﻿:root {
    --carta-grey-light: #F6F6F6;
    --carta-grey-medium: #d9d9d9;
    --carta-grey-dark: #48484A;
    --carta-grey-alt: #E0E0E0;
    --carta-red-dark: #A22E2E;
    --carta-red-light: #DA5353;
    --carta-green-dark: #588A1C;
    --carta-green-light: #76BC21;
    --carta-blue-dark: #344A57;
    --carta-blue: #5F7986;
    --carta-blue-light: #B2C2CC;
    --carta-blue-alt: #6795B0;
    --carta-blue-tabs: #e4ebf0;
    --carta-blue-bootstrap: rgba(0, 123, 255, 0.8);
    --carta-green-gradient: linear-gradient(180deg, rgba(118, 188, 33, 0.8) 0%, #588A1C 99.99%);
    --carta-darkblue-gradient: linear-gradient(180deg, #344A57 0%, #5F7986 100%);
    --carta-blue-gradient: linear-gradient(180deg, #6795B0 0%, #4F7083 100%);
    --carta-red-gradient: linear-gradient(180deg, rgba(218, 83, 83, 0.75) 0%, #A22E2E 100%);
    --carta-darkblue-gradient-alt: linear-gradient(180deg, rgba(95, 121, 134, 0.75) 0%, #344A57 100%);
    --carta-blue-gradient-alt: linear-gradient(180deg, rgba(103, 149, 176, 0.75) 0%, #4F7083 100%);
    --carta-white-alt: #fdfcfa;
    --carta-grey-light2: #e6e6e6;
    --carta-blue-light2: rgb(178, 194, 204, 60%);
    --carta-grey-lightdark: rgb(72, 72, 74, 70%);
}

body {
    font-family: 'Roboto', sans-serif, Arial;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: black;
    letter-spacing: 0.3px;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif, Arial;
}

@font-face {
    font-family: HelveticaNeue;
    src: url("../fonts/HelveticaNeueLTStd-Lt.otf");
    /*font-weight: lighter;*/
}

@font-face {
    font-family: HelveticaNeue;
    src: url("../fonts/HelveticaNeueLTStd-Md.otf");
    font-weight: 900;
}

.family-arial {
    font-family: Arial !important;
}

.family-helvetica {
    font-family: HelveticaNeue !important;
}

.flex {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}

.flex-align-start {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.flex-align-end {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.flex-end-align-end {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.flex-end-align-center {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flex-wrap {
    flex: 1;
    flex-wrap: wrap;
}

.flex-align-center {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.flex-center-align-end {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.flex-center-align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.flex-between-align-start {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.flex-between-align-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-between-align-end {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.flex-between-align-stretch {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: flex-start;
}

.flex-around {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.flex-around-align-center {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flex-column-align-start {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.flex-column-align-center {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.flex-column-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flex-evenly-align-center {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.text-flash-blue {
    color: var(--carta-blue-light);
    letter-spacing: 1px !important;
    font-size: 1rem !important;
    font-weight: bold !important;
    -webkit-animation-name: colorChangeFlash;
    animation-name: colorChangeFlash;
    animation-delay: 250ms;
    animation-direction: alternate-reverse;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    animation-iteration-count: 1;
}

.label-flash {
    color: var(--carta-blue-bootstrap) !important;
    letter-spacing: 0.5px !important;
    font-weight: bold !important;
}

.rotate-90 {
    transform: rotate(90deg);
}

.opacity-full {
    opacity: 1 !important;
}

.visible {
    visibility: visible !important;
}

.hide {
    visibility: hidden !important;
    display: initial !important;
}

.lh-1 {
    line-height: 1 !important;
}

.cursor-point {
    cursor: pointer !important;
}

.cursor-default {
    cursor: default !important;
}

.cursor-disabled {
    cursor: not-allowed !important;
}

.color-black {
    color: black !important;
}

.color-white {
    color: white !important;
}

.color-darkgrey {
    color: var(--carta-grey-dark) !important;
}

.color-blue {
    color: var(--carta-blue) !important;
}

.color-darkblue {
    color: var(--carta-blue-dark) !important;
}

.color-lightblue {
    color: var(--carta-blue-light) !important;
}

.color-bootstrap {
    color: var(--carta-blue-bootstrap) !important;
}

.color-blue-alt {
    color: var(--carta-blue-alt) !important;
}

.color-red {
    color: red !important;
}

.color-green {
    color: var(--carta-green-dark) !important;
}

.color-orange {
    color: orange !important;
}

.bg-darkblue {
    background: var(--carta-blue-dark);
}

.bg-lightgrey {
    background: var(--carta-grey-light);
}

.bdy {
    margin: 0;
    /*background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);*/
    background: var(--carta-grey-light);
}

a {
    color: black;
    text-decoration: none;
}

    a:hover {
        color: var(--carta-blue-bootstrap);
        text-decoration: underline;
    }


li.nav-item > a.active {
    border-bottom: 2px solid var(--carta-blue-bootstrap);
}

.addline-i {
    margin: 0;
    color: var(--carta-blue-bootstrap);
    cursor: pointer;
    -webkit-transition: box-shadow 350ms ease, padding 250ms ease;
    -moz-transition: box-shadow 350ms ease, padding 250ms ease;
    -o-transition: box-shadow 350ms ease, padding 250ms ease;
    transition: box-shadow 350ms ease, padding 250ms ease;
}

    .addline-i:hover {
        border: 1px solid var(--carta-blue-bootstrap);
        border-radius: 16px;
        padding: 3px;
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.8);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.8);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.8);
    }

.removeline-i {
    margin: 0;
    color: var(--carta-red-dark);
    cursor: pointer;
    -webkit-transition: box-shadow 350ms ease, padding 250ms ease;
    -moz-transition: box-shadow 350ms ease, padding 250ms ease;
    -o-transition: box-shadow 350ms ease, padding 250ms ease;
    transition: box-shadow 350ms ease, padding 250ms ease;
}

    .removeline-i:hover {
        border: 1px solid var(--carta-red-light);
        border-radius: 16px;
        padding: 3px;
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--carta-red-light);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--carta-red-light);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--carta-red-light);
    }

.main-skeleton-tbl-tr {
    background: #e8e8e8;
    height: 10px;
    border-radius: 2.5px;
    margin-right: 10px;
    margin-left: 10px;
}

.width-20 {
    width: 20% !important;
}

.width-33 {
    width: 33.3% !important;
}

.width-50 {
    width: 47.5% !important;
}

.half-width {
    width: 47.5% !important;
}

.full-width {
    width: 100% !important;
}

.full-mw {
    max-width: 100% !important;
}

.full-height {
    height: 100% !important;
}

.icon-attr-xs {
    font-size: 5px !important;
    color: var(--carta-grey-medium) !important;
}

    .icon-attr-xs > a {
        color: inherit !important;
        text-decoration: none !important;
    }

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-quarter {
    padding-top: 0.25em !important;
}

.pt-half {
    padding-top: 0.5em !important;
}

.pt-1 {
    padding-top: 1em !important;
}

.pt-1half {
    padding-top: 1.5em !important;
}

.pt-2 {
    padding-top: 2em !important;
}

.p-half {
    padding: 0.5em !important;
}

.p-1 {
    padding: 1em !important;
}

.p-1half {
    padding: 1.5em !important;
}

.p-2 {
    padding: 2em !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-half {
    padding-right: 0.5em !important;
}

.pr-1 {
    padding-right: 1em !important;
}

.pr-1half {
    padding-right: 1.5em !important;
}

.pr-2 {
    padding-right: 2em !important;
}

.pr-3 {
    padding-right: 3em !important;
}

.pr-4 {
    padding-right: 4em !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-half {
    padding-left: 0.5em !important;
}

.pl-1 {
    padding-left: 1em !important;
}

.pl-1half {
    padding-left: 1.5em !important;
}

.pl-2 {
    padding-left: 2em !important;
}

.pl-3 {
    padding-left: 3em !important;
}

.pl-4 {
    padding-left: 4em !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-half {
    padding-bottom: 0.5em !important;
}

.pb-1 {
    padding-bottom: 1em !important;
}

.pb-1half {
    padding-bottom: 1.5em !important;
}

.pb-2 {
    padding-bottom: 2em !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-half {
    margin-left: 0.5em !important;
}

.ml-1 {
    margin-left: 1em !important;
}

.ml-2 {
    margin-left: 2em !important;
}

.ml-1half {
    margin-left: 1.5em !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-half {
    margin-right: 0.5em !important;
}

.mr-1 {
    margin-right: 1em !important;
}

.mr-1half {
    margin-right: 1.5em !important;
}

.mr-2 {
    margin-right: 2em !important;
}

.mr-2half {
    margin-right: 2.5em !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-half {
    margin-top: .5em !important;
}

.mt-1 {
    margin-top: 1em !important;
}

.mt-1half {
    margin-top: 1.5em !important;
}

.mt-2 {
    margin-top: 2em !important;
}

.mt-2half {
    margin-top: 2.5em !important;
}

.mt-3 {
    margin-top: 3em !important;
}

.mt-4 {
    margin-top: 4em !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-half {
    margin-bottom: .5em !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-1 {
    margin-bottom: 1em !important;
}

.mb-1half {
    margin-bottom: 1.5em !important;
}

.mb-2 {
    margin-bottom: 2em !important;
}

.mb-2half {
    margin-bottom: 2.5em !important;
}

.mb-3 {
    margin-bottom: 3em !important;
}

.mb-4 {
    margin-bottom: 4em !important;
}

.not-shown {
    display: none !important;
}

.ta-center {
    text-align: center !important;
}

.ta-right {
    text-align: right !important;
}

.ta-left {
    text-align: left !important;
}

.borderless {
    border: none !important;
}

.shadowless {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.br-0 {
    border-right: none !important;
}

.underline {
    text-decoration: underline;
}

.no-underline, .no-underline:hover {
    text-decoration: none !important;
}

.no-bold {
    font-weight: 400 !important;
}

.bold {
    font-weight: 700 !important;
}

.bold-900 {
    font-weight: 900 !important;
}

.font-9 {
    font-size: 9px !important;
}

.font-10 {
    font-size: 10px !important;
}

.font-11 {
    font-size: 11px !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-15 {
    font-size: 15px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-17 {
    font-size: 17px !important;
}

.font-18 {
    font-size: 18px !important;
}


.blue-bootstrap {
    color: var(--carta-blue-bootstrap) !important;
}

.blue-dark {
    color: var(--carta-blue-dark) !important;
}

.red-light {
    color: var(--carta-red-light) !important;
}

.pos-rel {
    position: relative;
}

.transparent-text {
    color: transparent !important;
}

.required {
    color: var(--carta-red-light);
    /*position: absolute;*/ /* safari dislikes this */
    margin: 0 0 0 2px;
    padding: 0;
}

.underline-text {
    text-decoration: underline !important;
}

.main-search-input {
    font-size: inherit;
    border-right: none;
    height: 31px;
    max-width: 212px;
    min-width: 172px;
    border-radius: 3px;
}

    .main-search-input:focus + span {
        background-color: #fff;
        border-color: #66afe9;
        outline: 0;
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

.main-search-span {
    background-color: #fff;
}

.main-passwordEye-Span {
    cursor: pointer;
    border: 0.5px solid rgba(217, 217, 217, 0.5);
    background: var(--carta-grey-light);
    padding: 5.5px 12px;
    color: var(--carta-blue);
}

    .main-passwordEye-Span:hover {
        color: var(--carta-blue-bootstrap);
    }


/* Add a green text color and a checkmark when the requirements are right */
.valid {
    color: green;
}

    .valid:before {
        position: relative;
        left: -5px;
        content: "✔";
    }

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
    color: red;
}

    .invalid:before {
        position: relative;
        left: -5px;
        content: "✖";
    }

.main-search-span-hover {
    background-color: #fff;
    border-color: #66afe9;
    outline: 0;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

i.fa-search {
    color: var(--carta-grey-medium);
}

i.fa-info-circle {
    color: var(--carta-blue-alt);
    margin-left: .5em;
    cursor: help;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms;
    -o-transition: all 600ms;
    transition: all 600ms;
}

    i.fa-info-circle:hover {
        color: var(--carta-blue-bootstrap);
        transform: rotate(360deg);
    }

.main-bootstrap-active, .main-bootstrap-active + .main-passwordEye-Span {
    border: #66afe9 !important;
    outline: 0 !important;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
}

.invalid-input {
    border-color: rgb(218 83 83) !important;
    outline: 0 !important;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) !important;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(218 83 83 / 60%) !important;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(218 83 83 / 60%) !important;
}

/* Start of section container styling */

.tab-content {
    background: #FFFFFF;
    box-sizing: border-box;
    border-radius: 2px;
    padding: .5em 1.5em;
}

.section-header {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
}

.section-group-header {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    color: var(--carta-blue-dark);
}

.section-group-header-lg {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    color: var(--carta-blue-dark);
}


.section-group-header-sub {
    color: rgba(72, 72, 74, 0.50);
}

.section-header-underline {
    width: 100%;
    margin: 3px 0 5px 0;
    height: 0;
    border: 0.5px solid #D9D9D9;
    -moz-box-shadow: 0 0.5px 1px var(--carta-grey-light);
    -webkit-box-shadow: 0 0.5px 1px var(--carta-grey-light);
    box-shadow: 0 0.5px 1px var(--carta-grey-light);
}

.section-header-underline-lightblue {
    width: 100%;
    margin: 3px 0 5px 0;
    height: 0;
    border: 0.5px solid var(--carta-blue-light);
    -moz-box-shadow: 0 0.5px 1px var(--carta-grey-light);
    -webkit-box-shadow: 0 0.5px 1px var(--carta-grey-light);
    box-shadow: 0 0.5px 1px var(--carta-grey-light);
}

.section-group {
    display: flex;
    flex: 1;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.section-group-sm {
    display: flex;
    flex: 1;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.section-group-sm-end {
    display: flex;
    flex: 1;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.section-group-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.input-group-mar, .section-input-group, .section-input-group-xs, .section-input-group-sm, .section-input-group-md, .section-input-group-3rd, .section-input-group-doubled, .section-input-group-half, .section-input-group-full, .section-input-group-modal {
    margin: 1em 2em 1em 0;
}

.section-input-group-xs {
    width: 100px;
}

.section-input-group-sm {
    width: 165px;
}

.section-input-group {
    width: 232px;
}

.input-group-w212 {
    width: 212px;
}

.section-input-group-modal {
    width: 175px;
}

.section-input-group-doubled {
    width: 492px;
}

.section-input-group-full {
    width: 100%;
}

.section-input-group-md {
    width: 22%;
    height: 54px;
    min-width: 182px;
}

.section-input-group-3rd {
    width: 31.5%;
    height: 54px;
    min-width: 182px;
}

.section-input-group-half {
    width: 47%;
    height: 54px;
    min-width: 182px;
}

    .input-group-label, .section-input-group > label, .section-input-group-doubled > label, .section-input-group-full > label, .section-input-group-modal > label, .section-input-group-md > label,
    .section-input-group-3rd > label, .section-input-group-half > label, .section-input-group-sm > label, .section-input-group-xs > label {
        margin-bottom: 3px;
        font-weight: 700;
    }

    .section-input-group > p, .section-input-group-doubled > p, .section-input-group-full > p, .section-input-group-modal > p, .section-input-group-md > p, .section-input-group-3rd > p, .section-input-group-half > p {
        padding-top: 6px;
    }

.section-input-group-calendar {
    width: 192px;
    margin: 0 0 1em 0;
}

.section-input-group-text::-webkit-input-placeholder {
    color: #bfbfbf !important;
}

.section-calendar-label {
    margin: 1em 0 2px 0;
    font-weight: 700;
}

.section-input-group-text {
    font-family: 'Roboto', sans-serif, Arial;
    padding: 6px 10px;
    font-size: 13.5px;
    height: 31px;
    line-height: 1.42857143;
    display: block;
    width: 100%;
    background: var(--carta-grey-light);
    border: 0.5px solid rgba(217, 217, 217, 0.5);
    border-radius: 3px;
    -moz-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.section-input-group-textarea {
    font-family: 'Roboto', sans-serif, Arial;
    height: 100px;
    line-height: 1.42857143;
    display: block;
    width: 100%;
    background: var(--carta-grey-light);
    border: 0.5px solid rgba(217, 217, 217, 0.5);
    resize: none;
    overflow: auto;
    border-radius: 3px;
    padding: 12px;
    -moz-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

    .section-input-group-text:focus, section-input-group-text:focus > span, .section-input-group-textarea:focus {
        background-color: #fff;
        border-color: #66afe9;
        outline: 0;
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

.textarea-md {
    height: 150px;
}

.input-darkborder {
    border: 0.5px solid rgba(217, 217, 217, 1)
}

.main-calendar-span {
    background: linear-gradient(180deg, #6795B0 0%, #4F7083 100%);
    color: #fff;
    border: 1px solid var(--carta-blue);
    padding: 4px 6px;
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    border-radius: 0 4px 4px 0;
    align-items: center;
}

.section-input-group-file-outer {
    height: 31px;
    display: flex;
    align-items: center;
}

.section-input-group-file {
    color: var(--carta-blue);
    background-color: white;
    margin-right: 6px;
    font-size: 13.5px;
}

.section-input-group-file-a {
    cursor: pointer;
    max-width: 400px;
}

.section-hover, .section-borderless-hover {
    -webkit-transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    -moz-transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    -o-transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

    .section-hover:hover {
        border: 0.5px solid var(--carta-grey-alt);
    }

    .section-hover:hover, .section-borderless-hover:hover {
        border-radius: 3px;
        background: white;
        -moz-box-shadow: 1px 2px 4px 0 rgba(0,0,0,0.2);
        -webkit-box-shadow: 1px 2px 4px 0 rgb(0 0 0 / 20%);
        box-shadow: 1px 2px 4px 0 rgb(0 0 0 / 20%);
    }

/* end of section container styling */


/* Start of shared layout styling */

.bgc-white {
    background: white !important;
}

.height-31 {
    height: 31px;
}

.main-height-full {
    min-height: calc(100vh - 222px);
}

.standard-font {
    font-style: normal;
    line-height: 19px;
}

.standard-link {
    cursor: pointer;
    color: var(--carta-blue-dark);
    -moz-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

    .standard-link:hover {
        color: var(--carta-blue-bootstrap) !important;
        text-decoration: underline;
    }

.screen-sm-show {
    display: none;
}

.screen-sm-hide {
    display: initial;
}

.nav-menu-bg {
    background: var(--carta-blue-dark);
    border-color: var(--carta-blue-dark);
    height: 60px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.empty-header-div {
    width: 362px;
    height: 31px;
}

.header-img {
    height: 55px;
    cursor: pointer;
}

.header-img-wrapper {
    margin: auto 0;
}

.nav-mitcarta-bg {
    width: 180px;
    letter-spacing: 0.25px;
    height: 31px;
    padding-top: 3.5px;
    font-size: 18px;
}

.nav-profile-btn {
    border: none;
    background: transparent;
    outline: none;
    min-width: 140px;
    text-align: left;
    margin: 0 2rem;
    padding: 0;
    display: flex;
    align-items: baseline;
}

    .nav-profile-btn > i.fa-user-circle {
        color: white;
        margin-right: 6px;
    }

    .nav-profile-btn > p {
        color: white;
    }

    .nav-profile-btn > i.fa-angle-down {
        color: white;
        margin-left: 6px;
    }

.nav-profile-div {
    padding: 0;
    width: 100%;
    min-width: 160px;
    max-width: 200px;
    margin: 0 2rem;
}

#profileName, #profileNameAlt {
    max-width: 300px;
    margin-top: 5px;
    margin-bottom: 0;
}

.nav-profile-ul {
    list-style: none;
    padding: .6em 0 0 0;
    font-family: 'Roboto', sans-serif, Arial;
}

    .nav-profile-ul > li > i {
        margin: 5px 5px 5px 10px;
        color: var(--carta-blue-dark);
    }

        .nav-profile-ul > li > i.fa-sign-in-alt {
            padding-top: .5em;
        }

    .nav-profile-ul > li:hover {
        background-color: var(--carta-grey-light);
    }

    .nav-profile-ul > li > a:hover {
        color: var(--carta-blue-bootstrap);
    }

.nav-profile-ul-li {
    cursor: pointer;
}

    .nav-profile-ul-li > a {
        font-size: 12px;
    }

    .nav-profile-ul-li:hover > a {
        text-decoration: underline;
        color: var(--carta-blue-bootstrap);
    }

.main-wrapper {
    position: absolute;
    left: 180px;
    top: 91px;
    width: calc(100% - 181px);
    height: auto;
    min-height: 673px; /* min-height of the child .container-main + 50px margin for the footer */
}

.container-main {
    display: flex;
    justify-content: flex-start;
    min-height: calc(100vh - 161px);
}

.section {
    width: 100%;
    min-height: 623px;
    background: #FFFFFF;
    padding: 0 !important;
}

.section-content {
    padding: 2em 3em;
    max-width: 1800px;
}

.section-content-border {
    border: 1px solid rgba(217, 217, 217, 0.6);
}

.aside-overview {
    width: 218px;
    min-height: 268px;
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF);
    border: none;
    -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    border-radius: 1.5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    margin-left: 5px;
    max-height: 696px;
}

.verticalNav-container {
    display: flex;
    flex-direction: column;
    position: fixed;
    background-color: var(--carta-grey-light);
    top: 91px;
    width: 180px;
    border-right: 0.5px solid var(--carta-grey-light);
}

.verticalNav {
    list-style: none;
    font-size: 14px;
    padding: 0;
}

.verticalNav-headers {
    padding: 1.25rem;
    cursor: pointer;
    background: transparent;
    border-bottom: 1px solid white;
    border-top: 1px solid white;
}

    .verticalNav-headers:hover {
        color: var(--carta-blue-bootstrap);
    }

.verticalNav-i {
    color: var(--carta-blue-dark);
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -moz-transition: transform .5s;
    -webkit-transition: transform .5s;
    -moz-transition: transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
}

    .verticalNav-i:hover {
        color: var(--carta-blue-bootstrap);
    }

.verticalNav-i-open {
    font-size: 16px;
    color: var(--carta-blue-bootstrap);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.verticalNav-badge {
    display: inline-block;
    width: 14px;
    padding: 0 0 1px 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--carta-blue-bootstrap);
    text-align: center;
    border-radius: 12px;
    margin-left: 8px;
}

.verticalNav-subheader {
    padding: 0.4rem 0 0.4rem 1rem;
    cursor: pointer;
    letter-spacing: 0.25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
}

    .verticalNav-subheader > a {
        color: black;
        text-decoration: none !important;
    }

        .verticalNav-subheader:hover, .verticalNav-subheader > a:hover {
            color: var(--carta-blue-bootstrap);
            text-decoration: none;
        }

.verticalNav-active {
    font-weight: bolder;
}

.verticalNav-active-sibling {
    background: var(--carta-blue-tabs);
}

.verticalNav-subHeader-wrapper {
    opacity: 0;
    display: none;
    -moz-transition: opacity 300ms, visibility 300ms;
    -o-transition: opacity 300ms, visibility 300ms;
    -webkit-transition: opacity 300ms, visibility 300ms;
    transition: opacity 300ms, visibility 300ms;
}

.verticalNav-subHeader-open {
    display: initial;
    opacity: 1;
}

i.verticalNav-noChildren {
    opacity: 0.3;
}

.overview-header {
    font-weight: bold;
    line-height: 110%;
    letter-spacing: 0.05em;
    color: var(--carta-blue);
    font-size: 14px;
    padding: 0.3em 0.5em;
    margin: .5rem 0 0 0;
}

.overview-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .overview-wrapper > :first-child {
        font-weight: 700;
        font-size: 18px;
        line-height: 140.62%;
        color: rgba(0, 0, 0, 0.8);
        margin-bottom: 5px;
    }

.overview-spacing {
    margin-top: .25rem;
}

.overview-text {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--carta-blue-dark);
    width: 100%;
    margin-right: 0;
    padding: 0 5px;
}

.overview-text-info {
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 0;
    padding: 0 5px;
    color: rgba(72, 72, 74, 0.75);
    width: 100%;
}

.overview-text-info-sub {
    margin-bottom: 0;
    padding: 0 3px 0 5px;
    font-size: 12.5px;
}

.overview-text-info-sub2 {
    margin-bottom: 0;
    padding: 2px 1px 2px 5px;
    font-size: 12.5px;
}

.overview-divider {
    height: 0;
    border: 0.5px solid rgba(217, 217, 217, 0.6);
    /*    box-shadow: 0.3px 0.3px 0.5px rgba(0, 0, 0, 0.25); */
    margin: 0.7em 0;
    width: 154px;
}

.carta-footer {
    z-index: 999;
    position: absolute;
    left: -180px;
    bottom: -70px;
    right: 0;
    width: calc(100% + 181px);
    color: white;
    height: 50px;
    text-align: center;
    background: var(--carta-blue-dark);
}

.section-top {
    margin-bottom: 2em;
}

    .section-top > :first-child {
        float: left;
    }

    .section-top > .input-group {
        float: right;
        margin-top: 5px;
        width: 200px;
    }

.section-top-actions {
    width: calc(100% - 230px);
    min-width: 400px;
}

.max-lines-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.max-lines-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media(max-width: 1108px) {
    div[rel="empty-flex-element"] {
        display: none;
    }

    th[rel="lastlogCol"], td[rel="lastlogCol"], th[rel="statusCol"], td[rel="statusCol"] {
        display: none !important;
    }
}

/* end of shared layout styling */


/* start of toggle switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 14px;
    margin-bottom: 0;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    background: linear-gradient(0deg, #D9D9D9, #D9D9D9);
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 0px;
        bottom: -2px;
        background-color: rgba(178, 194, 204, 0.75);
        -webkit-transition: .4s;
        transition: .4s;
        border: 1px solid rgba(178, 194, 204, 0.75);
    }

.slider-neutral {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--carta-blue);
    background: var(--carta-blue);
    -webkit-transition: .4s;
    transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
}

    .slider-neutral:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 0px;
        bottom: -2px;
        border: 1px solid var(--carta-blue);
        background-color: var(--carta-grey-alt);
        -webkit-transition: .4s;
        transition: .4s;
        -moz-transition: .4s;
        -o-transition: .4s;
    }

.switch-no {
    font-weight: 400;
    margin: 0 1em 0 0;
    color: var(--carta-blue-dark);
}

.switch-yes {
    font-weight: 400;
    margin: 0 0 0 1em;
    color: var(--carta-blue-dark);
}

input:focus + .slider, input:focus + .slider-neutral {
    -moz-box-shadow: 0 0 1px #2196F3;
    -webkit-box-shadow: 0 0 1px #2196F3;
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider, input:checked + .slider-neutral {
    background: var(--carta-blue);
}

    input:checked + .slider:before, input:checked + .slider-neutral:before {
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
        border: 1px solid var(--carta-blue);
        background-color: var(--carta-grey-alt);
    }

.slider.round, .slider-neutral.round {
    border-radius: 34px;
}

    .slider.round:before, .slider-neutral.round:before {
        border-radius: 50%;
    }
/* end of toggle switch styling */

/* Start of table layout styling */
.carta-tbl {
    width: 100%;
    margin-bottom: 5px;
}

    .carta-tbl > thead > :first-child {
        height: 26px;
    }

    .carta-tbl > tbody > tr {
        height: 36px;
    }

    .carta-tbl > tbody > :last-child {
        border-bottom: none
    }

.carta-tbl-th {
    font-weight: 700;
    color: #A6A6A6;
    cursor: pointer;
}

.carta-tbl-th-dark {
    font-weight: 700;
    cursor: pointer;
}

.carta-tbl-th-light {
    font-weight: 700;
    color: white;
    cursor: pointer;
}


.carta-tbl-col-5 {
    width: 5%;
}

.carta-tbl-col-10 {
    width: 10%;
}

.carta-tbl-col-12half {
    width: 12.5%;
}

.carta-tbl-col-15 {
    width: 15%;
}

.carta-tbl-col-20 {
    width: 20%;
}

.carta-tbl-col-25 {
    width: 25%;
}

.carta-tbl-col-30 {
    width: 30%;
}

.carta-tbl-col-35 {
    width: 35%;
}

.carta-tbl-col-40 {
    width: 40%;
}

.carta-tbl-col-3rd {
    width: 33.33%;
    padding: 4px 12px;
}

.carta-tbl-th-alt {
    padding: 4px 12px;
}

.carta-tbl-th-sort {
    margin-left: 3px;
    height: 5px;
}

.carta-tbl-tr {
    border-bottom: 1px solid rgba(217, 217, 217, 0.6);
}

.carta-tbl-tbody-lightTR {
    background: var(--carta-grey-light);
}

.carta-tbl-tbody-darkTR {
    background: rgba(217, 217, 217, 0.6);
}

.carta-tbl-tr > :first-child {
    padding-left: .5em;
}

.carta-tbl-tr:hover, .tbl-tr-hover:hover {
    background: rgba(178, 194, 204, 0.29) !important;
}

.carta-actions-dd {
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    padding: 3px 6px 3px 10px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .carta-actions-dd:active {
        border: none;
    }

.carta-tbl-actions-btn {
    border: none;
    background: transparent;
    outline: none;
    width: 10px;
}

.carta-tbl-td-actions {
    color: var(--carta-blue);
    font-size: 15px;
    cursor: pointer;
}

.carta-tbl-td-10 {
    max-width: 139px;
    padding-right: 10px;
}

.carta-tbl-td-15 {
    max-width: 153px;
    padding-right: 10px;
}

.carta-tbl-td-20 {
    max-width: 204px;
    padding-right: 10px;
}

.carta-tbl-td-25 {
    max-width: 232px;
    padding-right: 10px;
}

.carta-tbl-td-actions:hover {
    color: var(--carta-blue-bootstrap);
    font-weight: 700;
}

.carta-tbl-actions-div {
    padding: 0;
    width: 140px;
    left: -70px; /* center align the bootstrap open .dropdown-menu */
}

.carta-tbl-actions-ul {
    list-style: none;
    padding: 4px 0 0 0;
    font-size: 11px;
    font-family: 'Roboto', sans-serif, Arial;
    margin-bottom: 4px;
}

    .carta-tbl-actions-ul > li > i {
        margin: 5px 5px 5px 10px;
        color: var(--carta-blue);
    }

        .carta-tbl-actions-ul > li > i.fa-user-plus {
            color: var(--carta-red-dark);
        }

    .carta-tbl-actions-ul > li {
        padding: 6px 0;
        cursor: pointer;
    }

        .carta-tbl-actions-ul > li:hover {
            background-color: var(--carta-blue-tabs);
        }

            .carta-tbl-actions-ul > li:hover > a, .carta-tbl-actions-ul > li > a:hover {
                color: var(--carta-blue-bootstrap);
                text-decoration: underline;
            }

.carta-tbl-td-status {
    font-size: 3px;
    vertical-align: middle;
    margin-right: 1px;
}

.carta-tbl > thead > :first-child > :first-child {
    padding-left: .5em;
}

.tblExpandable-input-group-text {
    background: #fff !important;
}

.carta-tbl-wrap {
    height: auto;
    margin-bottom: 1.5em;
    max-height: 500px;
    overflow: auto;
    width: 100%;
}

    .carta-tbl-wrap > table {
        width: 100%;
    }

.carta-tbl-tr-active {
    background: rgba(178, 194, 204, 0.5) !important;
    font-weight: 700;
    color: var(--carta-blue-bootstrap);
}

.carta-tbl-th-separator {
    border-right: 1px solid white;
}

.carta-tbl-th-pad {
    padding: 2px !important;
}

.carta-tbl-td-pad {
    padding: 7px !important;
}

.carta-tbl-td-border {
    border: 0.25px solid var(--carta-grey-light);
}

.carta-tbl-td-border-white {
    border: 0.25px solid white;
}

@media(max-width: 957px) {
    .carta-tbl {
        font-size: 10.5px;
    }

    .carta-tbl-total > span {
        display: none;
    }
}

/* end of table layout styling */


/* Start of table total pages displayed dropdown styling */
.carta-section-bottom-row {
    margin: 25px 0 0 0;
}

.carta-tbl-total-outer {
    height: 50px;
    padding: 10px 0;
}

.carta-tbl-total {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}

    .carta-tbl-total > :first-child {
        font-size: 12px;
    }

.carta-tbl-total-dd {
    font-size: 13.5px;
    height: 31px;
    margin-left: 12px;
    padding: 3px 14px;
    cursor: pointer;
    width: 100px;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    appearance: menulist !important;
}

.carta-dd {
    color: black;
    font-size: 13.5px;
    height: 31px;
    padding: 3px 12px 3px 8px;
    cursor: pointer;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    appearance: menulist !important;
}

    .carta-dd:hover, .bootstrap-select > .dropdown-toggle:hover, .btn.show, .btn:first-child:active {
        background-color: #fff;
        border-color: #66afe9;
        outline: 0;
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

.carta-dd-md {
    width: 182px;
}

.carta-dd-sm {
    width: 124px;
}
/* end of table total pages displayed dropdown styling */

/* Start of table pagination styling */
.carta-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 10px 20px 10px 0;
    font-size: 12.5px;
    letter-spacing: 0.07em;
    color: rgba(72, 72, 74, 0.8);
}

.carta-pagination-ul {
    display: flex;
    flex: 1;
    list-style: none;
    margin: 0;
    justify-content: flex-end;
    padding-left: 0 !important;
}

.carta-pagination-li {
    padding: 0 7px;
    font-weight: 700;
}

.carta-pagination-li-next {
    padding: 0 3px 0 7px;
    color: rgba(72, 72, 74, 0.8);
}

.carta-pagination-li-prev {
    padding: 0 7px 0 4px;
    color: rgba(72, 72, 74, 0.8);
}

.carta-pagination-ul > li > a {
    padding: 1px 4px;
}

    .carta-pagination-ul > li > a:hover {
        text-decoration: none;
        background: linear-gradient(180deg, #6795B0 0%, #4F7083 100%);
        border-radius: 1.5px;
        color: #fff;
    }

    .carta-pagination-ul > li > a.active {
        text-decoration: none;
        background: linear-gradient(180deg, #6795B0 0%, #4F7083 100%);
        border-radius: 1.5px;
        color: #fff;
    }

.carta-pagination-prev {
    transform: rotate(-180deg);
    font-size: 7px;
}

.carta-pagination-next {
    font-size: 7px;
}

/* end of table pagination styling */


/* start of button styling */

.carta-btn-blue {
    width: 86px;
    height: 31px;
    background: linear-gradient(180deg, #6795B0 0%, #4F7083 100%);
    -moz-box-shadow: 1.5px 3px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 1.5px 3px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 1.5px 3px 4px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    color: #fff;
    margin-right: 20px;
    padding: 0 2px;
    font-size: 13px;
    border: none;
    -moz-transition: transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
    -webkit-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}

.carta-btn-color-red {
    background: var(--carta-red-gradient) !important;
}

.carta-btn-darkblue {
    width: 86px;
    height: 31px;
    background: var(--carta-darkblue-gradient);
    -moz-box-shadow: 1.5px 3px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 1.5px 3px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 1.5px 3px 4px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    color: #fff;
    margin-right: 20px;
    padding: 0 2px;
    font-size: 13px;
    border: none;
    -moz-transition: transform .2s ease-in-out;
    -o-transition: transform .2s ease-in-out;
    -webkit-transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}

.carta-btn-sm {
    width: 67px !important;
}

.carta-btn-md {
    width: 100px !important;
}

.carta-btn-lg {
    width: 120px !important;
}

.carta-btn-xl {
    width: 156px !important;
}

.carta-btn-blue:hover {
    border: none;
    color: #fff;
    background: var(--carta-blue);
}

.carta-btn-darkblue:hover {
    border: none;
    color: #fff;
    background: var(--carta-blue-dark);
}

.carta-btn-blue:focus {
    transform: scale(.9);
    color: #fff;
    outline: none !important;
    background: linear-gradient(180deg, #6795B0 0%, #4F7083 100%);
}

.carta-btn-darkblue:focus {
    transform: scale(.9);
    color: #fff;
    outline: none !important;
    background: var(--carta-darkblue-gradient);
}

.main-file-span {
    background-color: #fff;  
}

.main-file-span-disabled {
    background-color: var(--carta-grey-light);   
}

    .main-file-span-disabled > i.fa-file-alt {
        color: var(--carta-blue);
    }

.main-file-input {
    border-left: none;
    height: 31px;
    font-size: 11px;
    padding: 5px 3px 5px 0;
}

.main-input-group-file {
    margin: 18px 0 0 2em;
    width: auto;
}

.main-input-group-clearFile {
    margin: 18px 0 0 1em;
    width: auto;
}

.carta-btn-disable {
    cursor: not-allowed !important;
    opacity: 0.8 !important;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: white;
    pointer-events: inherit;
    background-color: initial;
    border-color: transparent;
    opacity: var(--bs-btn-disabled-opacity);
}

/* end of button styling */


/* start of basic modal styling */

.carta-modal-header {
    text-align: center;
    padding: 10px 10px 15px 10px;
    background: var(--carta-blue-dark);
    border-radius: 1px 1px 0 0;
}

    .carta-modal-header > h4 {
        color: #fff;
        font-size: 20px;
    }

    .carta-modal-header > .close, .modal-header > .close {
        text-shadow: none;
        opacity: .7;
        margin: 0px 15px 0 0;
        color: white;
        float: right;
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
        cursor: pointer;
        -webkit-transition: transform 350ms ease-in-out;
        -moz-transition: transform 350ms ease-in-out;
        -o-transition: transform 350ms ease-in-out;
        transition: transform 350ms ease-in-out;
    }

        .carta-modal-header > .close:hover, .modal-header > .close:hover {
            transform: rotate(90deg) !important;
        }

.carta-modal-footer {
    padding: 15px;
    display: flex;
    justify-content: flex-end;
}

.carta-modal-footer-centered {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.carta-modal-input {
    margin-top: 1rem;
}

/* end of basic modal styling */


/* start of small zebra table for read only */
.zebra-table-outer {
    margin: 1.5em 0;
    display: flex;
}

.zebra-tbl-wrap {
    height: auto;
    max-height: 340px;
    min-height: 140px;
    overflow: auto;
    width: 100%;
}

.zebra-tbl-wrap-ext {
    max-height: 500px;
}

.zebra-table-outer > .zebra-tbl-wrap > table {
    width: 100%;
}

.zebra-table-headers {
    height: 31px;
    background: linear-gradient(0, #DCE6F0, #DCE6F0);
    border-radius: 1px;
}

.zebra-table-headers-dark {
    height: 33px;
    background: var(--carta-blue-dark);
    border-radius: 1px;
}

    .zebra-table-headers > th, .zebra-table-headers-dark > th {
        padding: 4px 0;
    }

    .zebra-table-headers > :first-child, .zebra-table-headers-dark > :first-child {
        padding-left: 10px;
    }

    .zebra-table-headers > :last-child, .zebra-table-headers-dark > :last-child {
        padding-right: 14px;
    }

.zebra-table-tbody {
    border-left: .5px solid var(--carta-grey-light);
    border-bottom: .5px solid var(--carta-grey-light);
}

.zebra-table-row {
    height: 26px;
    border-radius: 1px;
}

    .zebra-table-row > td {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        font-size: 12px;
    }

        .zebra-table-row > td > a {
            color: var(--carta-blue-bootstrap) !important;
            text-decoration: underline;
        }

.zebra-table-tbody-fullBorder {
    border-left: .5px solid var(--carta-grey-light);
    border-right: .5px solid var(--carta-grey-light);
    border-bottom: .5px solid var(--carta-grey-light);
}

.zebra-leftRightCol {
    padding-left: 8px !important;
    padding-right: 4px !important;
}

.zebra-pincode-tr {
    height: 48px !important;
}

.zebra-table-row-md {
    height: 36px;
    border-radius: 1px;
}

@media only screen and (max-width: 700px) {
    .zebra-table-outer {
        display: block;
    }
}

/* end of small zebra table for read only */

/* start of loading spinner styling */
.spinner-box-sm {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.circle-border-sm {
    width: 25px;
    height: 25px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--carta-blue);
    background: linear-gradient(0deg, rgba(103,149,176,0.1) 33%, #6795B0 100%);
    animation: spin .8s linear 0s infinite;
}

.spinner-box-md {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.circle-border-md {
    width: 44px;
    height: 44px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--carta-blue);
    background: linear-gradient(0deg, rgba(103,149,176,0.1) 84%, #6795B0 100%);
    animation: spin .8s linear 0s infinite;
}

.spinner-box-lg {
    width: 128px;
    height: 128px;
    background-color: transparent;
}

.circle-border-lg {
    width: 125px;
    height: 125px;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--carta-blue);
    /*background: linear-gradient(0deg, rgba(103,149,176,0.1) 33%, #6795B0 100%);*/
    background: linear-gradient(0deg, rgba(103,149,176,0) 94%, #6795B0 100%);
    animation: spin .8s linear 0s infinite;
    border: .4px solid rgba(103,149,176,0.9);
}

.circle-core {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
}

.loading {
    position: fixed;
    z-index: 9999;
    height: 15em;
    width: 15em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 100px;
    right: 1px;
}

    .loading:before {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.3);
    }

.spinner-md-btn {
    padding-bottom: 4px;
    margin-right: 7em;
}

@-webkit-keyframes colorChangeFlash {
    25% {
        color: var(--carta-blue-bootstrap);
    }

    50% {
        color: #3396ff;
    }

    75% {
        color: #66b0ff;
    }

    100% {
        color: #b3d7ff;
    }
}

@keyframes colorChangeFlash {
    25% {
        color: var(--carta-blue-bootstrap);
    }

    50% {
        color: #3396ff;
    }

    75% {
        color: #66b0ff;
    }

    100% {
        color: #b3d7ff;
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
}

.animate-360 {
    -webkit-animation-name: spinCircle;
    animation-name: spinCircle;
    -webkit-animation-duration: 3000ms;
    animation-duration: 3000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spinCircle {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@-webkit-keyframes spinCircle {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.animate-flip180 {
    -webkit-animation-name: flip180;
    animation-name: flip180;
    -webkit-animation-duration: 1500ms;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes flip180 {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(180deg);
    }
}

@-webkit-keyframes flip180 {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(180deg);
    }
}

.animate-move {
    -webkit-animation-name: move;
    animation-name: move;
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-webkit-keyframes move {
    0% {
        margin-left: initial;
    }

    50% {
        margin-left: 8px;
    }

    100% {
        margin-left: initial;
    }
}

@keyframes move {
    0% {
        margin-left: initial;
    }

    50% {
        margin-left: 8px;
    }

    100% {
        margin-left: initial;
    }
}

@-webkit-keyframes imgMissing {
    100% {
        background-position: 4px 0, -4px 100%, 0 -4px, 100% 4px;
    }
}

@keyframes imgMissing {
    100% {
        background-position: 4px 0, -4px 100%, 0 -4px, 100% 4px;
    }
}

/* end of loading spinner styling */

/* start of navigation small devices styling */
.menu-btn {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 2;
    display: none;
    color: white;
}

    .menu-btn:hover {
        opacity: 0.5;
    }

@media(max-width: 768px) {
    .screen-sm-show {
        display: initial;
    }

    .screen-sm-hide {
        display: none;
    }

    .main-wrapper {
        left: 0;
        width: 99.5%;
    }

    .menu-btn {
        display: block;
    }

    #main-nav {
        z-index: 3;
        display: block;
        position: absolute;
        background: var(--carta-grey-light2);
        border-right: #ccc 1px solid;
        opacity: 1;
        /* hide the menu off the screen */
        transform: translateX(-500px);
        -moz-transition: transform 0.5s ease-in-out;
        -o-transition: transform 0.5s ease-in-out;
        -webkit-transition: transform 0.5s ease-in-out;
        transition: transform 0.5s ease-in-out;
    }

        #main-nav.show {
            transform: translateX(0);
        }

    .spaNavigation {
        color: black;
    }

    .verticalNav-headers {
        color: black;
    }

    .empty-header-div {
        width: 0;
    }
}
/* end of navigation small devices styling */


/* start of override bootstrap datepicker styling */

.spaNavigation {
    /* CCS: leave empty */
}

    .spaNavigation:hover, .spaNavigation:focus {
        color: var(--carta-blue-bootstrap) !important;
        text-decoration: none !important;
    }

.next {
    text-align: right;
}

.next, .prev {
    padding: 5px;
    min-width: 27px;
    cursor: pointer;
}

    .next:hover, .prev:hover, .datepicker-switch:hover {
        color: var(--carta-blue-bootstrap);
    }


.dow {
    padding: 5px;
    font-size: 14px;
}

.day, .datepicker-switch {
    padding: 5px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

    .next:hover, .prev:hover, .datepicker-switch:hover {
        color: var(--carta-blue-bootstrap) !important;
        background: transparent !important;
    }

.active.day, .month.active, .month.focused, .month.focused.active, .year.active, .decade.active {
    background: linear-gradient(180deg, #6795B0 0%, #4F7083 100%) !important;
    color: white !important;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.disabled.day, .month.disabled, .year.disabled, .decade.disabled, .century.disabled {
    color: var(--carta-grey-alt) !important;
    cursor: not-allowed !important;
}

.datepicker table tr td span {
    display: block;
    width: 22%;
    height: 32px;
    line-height: 34px;
    float: left;
    margin: 1%;
    cursor: pointer;
    text-align: center;
}

/* end of override bootstrap datepicker styling */


/* Override bootstrap-select dropdown */
.bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
    color: black !important;
}

.bootstrap-select > .dropdown-toggle {
    font-size: 12px;
    height: 30px;
    padding: 3px 16px;
    border-radius: .25rem;
    background-color: #fff;
    border: 1px solid #ced4da;
}

    .bootstrap-select > .dropdown-toggle:focus {
        background-color: #fff;
        border-color: #80bdff;
        outline: 0 !important;
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        background: transparent !important;
    }

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {
    cursor: not-allowed !important;
    opacity: 0.8 !important;
    background-color: #fff;
    border: 1px solid #ced4da;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.9);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.9);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.9);
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    height: 22px !important;
    padding-top: 1.5px !important;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: inherit;
    min-width: 200px;
}

.bs-actionsbox {
    padding-top: 0 !important;
}

.bs-searchbox {
    margin-bottom: 8px;
}

.bs-select-all, .bs-deselect-all {
    font-size: 12px !important;
    color: var(--carta-grey-dark) !important;
    background-color: rgba(224,224, 224, 0.6) !important;
}

    .bs-select-all:hover, .bs-deselect-all:hover {
        color: var(--carta-blue-bootstrap) !important;
    }

.dropdown-menu > div.inner.show > ul.dropdown-menu.inner.show {
    font-size: 13.5px !important;
    color: black !important;
}

a.dropdown-item {
    color: var(--carta-grey-dark);
}

    a.dropdown-item:focus, a.dropdown-item:hover {
        color: var(--carta-blue-bootstrap) !important;
        text-decoration: none !important;
        outline: none !important;
        background-color: var(--carta-grey-light2) !important;
    }

    a.dropdown-item:active {
        color: var(--carta-blue-bootstrap) !important;
        text-decoration: none !important;
        background-color: var(--carta-grey-light2) !important;
    }

    a.dropdown-item:active {
        color: inherit;
        text-decoration: none;
        background-color: var(--carta-grey-light2) !important;
    }

    a.dropdown-item.selected > span.check-mark {
        color: var(--carta-blue-bootstrap) !important;
    }

    a.dropdown-item.selected > span.text {
        font-weight: 700
    }

.dropdown-item:focus-visible {
    outline: none !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: initial !important;
}

.fa-times-circle.fa-swap-opacity::before {
    color: white !important;
    opacity: 1 !important;
}

.bs-searchbox > input[type="search"] {
    font-size: 13px !important;
    height: 31px !important;
    line-height: 1.42857143 !important;
    background: var(--carta-grey-light) !important;
    border: 0.5px solid rgba(217, 217, 217, 0.5) !important;
    border-radius: 3px;
    -moz-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}


.bootstrap-select .dropdown-menu.show {
    max-height: 500px;
}

.dropdown-menu.inner.show {
    max-height: 444px !important;
}
/* end of override bootstrap-select dropdown */


/* Start of override toastr alert styling */
#toast-container {
    margin-top: 3% !important;
    min-width: 390px;
}

    #toast-container > div {
        min-width: 390px;
    }

.toast-top-full-width > .toast {
    width: 50%;
    max-width: 600px;
}

.toast-title {
    font-size: 15px;
}

.toast-message {
    font-size: 14px;
}

@media (max-width: 1500px) {
    #toast-container {
        margin-top: 4% !important;
    }
}

@media (max-width: 1200px) {
    #toast-container {
        margin-top: 4% !important;
    }
}

@media (max-width: 900px) {
    #toast-container {
        margin-top: 7% !important;
    }

    .toast-top-full-width > .toast {
        width: 70% !important;
    }

    .toast-title {
        font-size: 14px;
    }

    .toast-message {
        font-size: 13.5px !important;
    }
}

@media (max-width: 767px) {
    #toast-container {
        margin-top: 10% !important;
    }

    .toast-top-full-width > .toast {
        width: 90% !important;
    }

    .toast-title {
        font-size: 13.5px;
    }

    .toast-message {
        font-size: 12.5px !important;
    }
}

@media (max-width: 550px) {
    #toast-container {
        margin-top: 12% !important;
    }

    .toast-title {
        font-size: 13px;
    }

    .toast-message {
        font-size: 12px !important;
    }
}

@media (max-width: 400px) {
    #toast-container, #toast-container > div {
        min-width: 94%;
    }
}

/* end of override toastr alert styling */


/* Start of override bootstrap styling */
.form-group {
    margin-bottom: 1rem;
}

.dropdown-menu-right {
    right: 0;
    left: auto !important;
}

.form-control {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .form-control:focus {
        background-color: #fff;
        border-color: #66afe9;
        outline: 0;
        -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.8);
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.8);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.8);
    }

    .form-control::-webkit-input-placeholder {
        color: #d9d9d9 !important;
    }

    .form-control:disabled, .form-control[readonly] {
        background-color: var(--carta-grey-light);
    }


.nav-tabs {
    border-bottom: none;
}

    .nav-tabs > li > a {
        padding: 10px 10px 5px 10px;
        -moz-transition: border-bottom .4s;
        -o-transition: border-bottom .4s;
        -webkit-transition: border-bottom .4s;
        transition: border-bottom .4s;
        border-bottom: 2px solid var(--carta-grey-light);
    }

    .nav-tabs > li.active > a {
        color: black;
        border-color: transparent;
        border-bottom: 2px solid var(--carta-blue-bootstrap);
    }

        .nav-tabs > li.active > a:hover {
            color: black;
            border-color: transparent;
            border-bottom: 2px solid var(--carta-blue-bootstrap);
        }

    .nav-tabs > li > a:hover {
        border-color: transparent;
        border-bottom: 2px solid var(--carta-blue);
        background-color: inherit;
    }

    .nav-tabs > li.active > a:focus {
        color: #555;
        border-color: transparent;
        border-bottom: 2px solid var(--carta-blue);
    }

.modal-content {
    border: none;
}

.tooltip-inner {
    background-color: var(--carta-blue-dark) !important;
    color: #fff;
    max-width: 330px;
    text-align: left;
}

.bs-popover-auto[x-placement^=top] > .arrow::after, .bs-popover-top > .arrow::after {
    border-top-color: var(--carta-blue-dark);
}

.bs-popover-top {
    border: 1px solid var(--carta-blue);
}

.tooltip.top .tooltip-arrow {
    border-top-color: var(--carta-blue-dark) !important;
}

.tooltip.right .tooltip-arrow {
    border-top-color: var(--carta-blue-dark) !important;
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: var(--carta-blue-dark) !important;
}

.tooltip.left .tooltip-arrow {
    border-left-color: var(--carta-blue-dark) !important;
}

/* end of override bootstrap styling */

/* Align the main content (.section && .aside-overview) for larger screens */
@media only screen and (min-width: 1800px) {
    body {
        font-size: 14px;
    }

    .section-input-group-xs {
        width: 140px;
    }

    .section-input-group-sm {
        width: 205px;
    }

    .section-input-group {
        width: 272px;
    }

    .input-group-w212 {
        width: 252px;
    }

    .section-input-group-modal {
        width: 215px;
    }

    .section-input-group-doubled {
        width: 572px;
    }

    .section-input-group-md {
        width: 15%;
        height: 54px;
        min-width: 222px;
    }

    .section-input-group-3rd {
        width: 22.5%;
        height: 54px;
        min-width: 222px;
    }

    .section-input-group-half {
        width: 31.5%;
        height: 54px;
        min-width: 222px;
    }
}


@media only screen and (max-width: 1296px) {
    .section {
        margin-right: 0 !important;
        width: 100% !important;
    }

    .aside-overview {
        display: none;
    }

    .container-main {
        justify-content: start;
        margin-left: 0rem;
    }
}

@media only screen and (max-width: 957px) {
    .section-input-group {
        width: 202px;
    }

    .section-input-group-doubled {
        width: 100%;
        margin-right: 0 !important;
    }

    .section-content {
        padding: 1.75em;
    }
}

@media only screen and (max-width: 767px) {
    .width-50 {
        width: 100% !important;
    }

    .verticalNav-headers {
        padding: 0.75rem 1.25rem;
    }
}

@media only screen and (max-width: 680px) {
    .section-top-actions {
        width: 100%;
        padding-top: 1rem;
    }
}

@media only screen and (max-width: 767px) and (min-width: 501px) {
    .section-input-group-md {
        width: 31%;
        min-width: initial;
    }

    .section-content {
        padding: 1.5em;
    }

    .input-group-mar, .section-input-group, .section-input-group-xs, .section-input-group-sm, .section-input-group-md, .section-input-group-3rd, .section-input-group-doubled, .section-input-group-half, .section-input-group-full, .section-input-group-modal {
        margin: 1em 1em 1em 0;
    }
}

@media only screen and (max-width: 500px) {
    .send-btn {
        width: 100% !important;
    }

    .zebra-table-row > td {
        font-size: 11px;
    }

    .section-input-group-file-a {
        max-width: 350px;
    }

    .h4 {
        font-size: 18px;
    }

    .carta-pagination {
        width: 100%;
        padding-top: 0;
    }

    .section-content {
        padding: 1em 0.75em;
    }

    .section-group-header {
        font-size: 15px;
    }

    .section-group-header-lg {
        font-size: 16px;
    }

    .main-input-group-file, .main-input-group-clearFile {
        margin: 7px 0 0 0;
    }

    .carta-section-bottom-row {
        margin: 12px 0 0 0;
    }

    .carta-pagination-li {
        padding: 0 4px;
    }

    .section-input-group-md {
        width: 47.5%;
        min-width: initial;
    }

    .nav-mitcarta-bg {
        font-size: 15px;
    }

    .input-group-mar, .section-input-group, .section-input-group-xs, .section-input-group-sm, .section-input-group-md, .section-input-group-3rd, .section-input-group-doubled, .section-input-group-half, .section-input-group-full, .section-input-group-modal {
        margin: 0.5em 0 0.5em 0;
        width: 100%;
    }

        .section-input-group > p, .section-input-group-doubled > p, .section-input-group-full > p, .section-input-group-modal > p, .section-input-group-md > p, .section-input-group-3rd > p, .section-input-group-half > p {
            padding-top: 0;
        }

    .nav-profile-btn {
        margin: 0 0 0 1.5rem;
    }

    .carta-pagination-prev, .carta-pagination-next {
        font-size: 16px;
    }

    .carta-pagination-ul {
        justify-content: space-evenly;
    }

    .carta-tbl-th-sort {
        margin-left: 0;
    }

    .font-18 {
        font-size: 16px !important;
    }

    .font-17 {
        font-size: 15.5px !important;
    }

    .font-16 {
        font-size: 15px !important;
    }

    .font-15 {
        font-size: 14px !important;
    }

    .font-14 {
        font-size: 13px !important;
    }

    .font-13 {
        font-size: 12px !important;
    }
}

@media only screen and (max-width: 400px) {
    .section-input-group-file-a {
        max-width: 290px;
    }
}

/* end of tablets and mobile devices media queries */

/* end of Align the main content media queries */


/* start of bootstrap modal override & login screen media queries */
.input-group-addon {
    padding: 4px 12px;
}

.modal-fullscreen .modal-content {
    border-radius: var(--bs-modal-border-radius);
}

.modal-dialog {
    max-width: 600px;
    margin-top: 12%;
}

.modal.modal-fullscreen .modal-dialog {
    max-width: 1400px;
    width: 90%;
    margin-top: 3%;
}

.modal.modal-fullscreen-md .modal-dialog {
    max-width: 700px;
}

.modal.modal-fullscreen-lg .modal-dialog {
    width: 60%;
    height: 85%;
    max-width: 1400px;
    margin: 3% auto 0 auto;
}

@media (max-width: 992px) and (min-width: 793px) {
    .modal.modal-fullscreen .modal-dialog {
        width: 96%;
        height: 100%;
        margin: 2rem auto 1rem auto !important;
    }

    .model-content {
        height: -moz-fit-content;
        height: fit-content;
        max-height: fit-content;
    }

    .modal-body {
        position: relative !important;
        overflow: unset !important;
    }

    .carta-modal-footer {
        padding: 15px 7px;
        text-align: right;
        margin-top: 35px;
    }

    .carta-pagination-ul {
        padding-left: 0;
        justify-content: flex-start;
    }

    #profileName, #profileNameAlt {
        max-width: 288px;
    }
}

@media (max-width: 792px) {
    .modal.modal-fullscreen .modal-dialog {
        width: 96% !important;
    }
}

@media (max-width: 1395px) and (min-width: 1251px) {
    .modal.modal-fullscreen-lg .modal-dialog {
        width: 65% !important;
        margin: 2rem auto 1rem auto;
    }
}

@media (max-width: 1250px) and (min-width: 993px) {
    .modal.modal-fullscreen-lg .modal-dialog {
        width: 75% !important;
        margin: 2rem auto 1rem auto;
    }
}

@media (max-width: 992px) {
    .modal.modal-fullscreen-lg .modal-dialog {
        width: 90% !important;
        margin: 2rem auto 1rem auto;
    }
}

@media (max-width: 768px) {
    .modal.modal-fullscreen-md .modal-dialog {
        width: 96% !important;
        margin: 2rem auto 1rem auto;
    }
}

/* end of bootstrap modal override styling */


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
