@charset "UTF-8";
@import url('../fonts/titillium-web/fontFaces.css');
@import url('fontAwesomeFree6.7.2.css');
@import url('header.css');
@import url('sweetalert.min.css');

@keyframes introLogoMoveIn {
    0% {
        transform: translateY(200px);
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes introTextMoveIn {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes breath {
    0% {
        transform: scale(0.75);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.75);
    }
}

@keyframes modalBreath {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

:root {
    --coomanFontSize: 16px;
    --coomanBlue: #07d;
    --coomanPurple: #a5e;
    --coomanLightBlue: #09f;
    --coomanLowAlphaBlue: rgba(0, 153, 255, 0.4);
    --coomanLowAlphaWhite: rgba(255, 255, 255, 0.7);
    --black: #000;
    --anthracite: #333;
    --grey: #555;
    --lightGrey: #888;
    --greyWhite: #ccc;
    --lightGreyWhite: #ddd;
    --darkWhite: #eee;
    --mediumWhite: #fdfbfb;
    --white: #fff;
    --orange: #fa0;
    --green: #0a0;
    --lightGreen: #0c0;
    --red: #f00;
    --darkRed: #d00;
    --insetShadow: inset 0 0 2px rgba(25, 25, 25, 0.2);
    --coomanBlueGradient: linear-gradient(to right top, var(--coomanLightBlue), var(--coomanBlue));
    --coomanWhiteGradient: linear-gradient(to right top, var(--white), var(--lightGreyWhite));
    --greyGradient: linear-gradient(to right top, var(--darkWhite), var(--mediumWhite));
    --whiteGradient: linear-gradient(to top, var(--mediumWhite), var(--white));
    --bannerGradient: linear-gradient(to top, var(--white) 1%, var(--darkWhite) 20%, var(--coomanLightBlue));
    --bannerGradientReverse: linear-gradient(to top, var(--coomanLightBlue) 1%, var(--darkWhite) 20%, var(--white));
}

[class*='fa-'] {
    margin: 2px;
    font-size: 20px;
}

.button [class*='fa-'],
.redButton [class*='fa-'],
.linkButton [class*='fa-'],
.iconLeading [class*='fa-'] {
    margin-right: 5px;
    font-size: var(--coomanFontSize);
}

.iconTrailing [class*='fa-'] {
    margin-left: 5px;
    font-size: var(--coomanFontSize);
}

progress {
    -webkit-appearance: none;
    appearance: none;
    margin: 5px;
    width: 200px;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
}

progress::-webkit-progress-bar {
    background-color: var(--grey);
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

progress::-webkit-progress-value {
    background: linear-gradient(90deg, var(--green), var(--lightGreen));
    border-radius: 10px 0 0 10px;
    animation: progressAnimation 2s ease-in-out;
}

progress::-moz-progress-bar {
    background: linear-gradient(90deg, var(--green), var(--lightGreen));
    border-radius: 10px 0 0 10px;
}

.noCallout {
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

.textNoWrap {
    white-space: nowrap !important;
}

.textNoWrapOnDesktop {
    white-space: nowrap !important;
}

.textOverflowEllipsis {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.textOverflowDotted {
    text-overflow: ellipsis !important;
}

.noUserSelect {
    -webkit-user-select: none !important;
    user-select: none !important;
}

.noDecoration {
    text-decoration: none !important;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10002;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

#preloader::after {
    content: '';
    height: 120px;
    aspect-ratio: 2/1;
    background: url('../images/main/cooman_logo_full_blue.svg') no-repeat center center;
    background-size: contain;
    animation: breath 0.5s infinite;
}

html, body {
    margin: auto;
}

#wrapper {
    margin: auto;
}

b {
    font-weight: 700;
}

#credContainer {
    margin-left: 10px;
    text-align: left;
    width: 300px;
}

#contentContainer {
    margin: auto;
    padding: 120px 20px 20px 20px;
    width: auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    flex-flow: wrap;
}

#contentContainerNoHeader {
    margin: auto;
    padding: 20px;
    width: auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    flex-flow: wrap;
}

#contentContainerScreenCenter {
    margin: auto;
    padding: 20px;
    width: auto;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contentContainerScreenCenterDesktop {
    margin: auto;
    padding: 20px;
    width: auto;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contentBox {
    margin: auto;
}

.docChooseContainer {
    margin: 10px 10px 10px 5px;
    padding: 10px;
    border-radius: 25px;
    background-color: #eee;
}

.footerColumn {
    height: 120px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#coomanPdfViewer canvas {
    max-width: 100%;
}

.coomanModal {
    outline: none !important;
    border-radius: 15px;
    min-width: 200px;
    min-height: 200px;
}

.coomanModal[open] {
    animation: modalBreath 0.3s;
}

.coomanModal::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(1px);
}

.coomanModal .topBarContainer {
    position: absolute;
    padding: 5px;
    display: flex;
    flex-direction: row;
    border-radius: 25px;
    background-color: #fff;
    z-index: 1;
}

.coomanModal .coomanModalContainer {
    position: relative;
    margin: 5px -15px -15px -15px;
    padding: 30px;
    max-width: 800px;
    min-width: 150px;
    min-height: 150px;
}

.coomanModal canvas {
    max-width: 100%;
}

#statisticsFilterContainer {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 50px;
}

#statisticsFilterContainer > div {
    flex: 1;
}

.statisticsInfoContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, 280px);
    justify-content: space-between;
    grid-gap: 10px;
}

.statisticsDataContainer {
    display: flex;
    gap: 25px;
    flex-direction: row;
    flex-flow: wrap;
}

.statisticsDataContainer > div {
    display: flex;
    gap: 22px;
}

.statisticsDataContainer > div:empty {
    display: none;
}

.statisticsQuickInfoItem {
    margin: 5px;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.statisticsQuickInfoItem .result {
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 150%;
    height: 50px;
    display: flex;
    flex-direction: column;
}

.statisticsChartHeader {
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#areaContainer {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 5px;
    padding: 10px 10px 10px 0;
    border-radius: 20px;
}

#areaMenuButton {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

#areaMenu {
    width: 20% !important;
    margin: 5px;
    display: flex;
    flex-direction: column !important;
    flex-flow: wrap;
    align-self: start;
    gap: 10px;
}

#areaMenu span {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

#areaMenu i {
    width: 20px;
    text-align: center;
}

#areaMenu .areaButtonActive {
    color: #fff !important;
    background-color: var(--coomanBlue) !important;
}

#areaContent {
    width: 80% !important;
}

#areaContent .innerContainer:last-child {
    margin-bottom: 5px !important;
}

#positions .designation {
    width: 45% !important;
    min-width: 50px;
}

#positions .multiplier {
    width: 12% !important;
    min-width: 50px;
}

#positions .unit {
    width: 12% !important;
    min-width: 50px;
}

#positions .tax {
    width: 5% !important;
    min-width: 50px;
}

#positions .netto {
    width: 12% !important;
    min-width: 50px;
}

#positions .description {
    width: calc(98% + 1px) !important;
    height: 25px;
}

.borderBoxFullWidth {
    width: 99% !important;
    box-sizing: border-box;
}

.contentContainer {
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
}

.outerContainer {
    margin: 5px 5px 15px 5px;
    padding: 10px;
    border-radius: 20px;
    min-width: 250px;
}

.innerContainer {
    margin: 5px 5px 15px 5px;
    padding: 10px;
    border-radius: 12px;
    min-width: 250px;
}

.outerContainer > .entry:last-child {
    margin-bottom: 5px !important;
}

.outerContainer > .innerContainer:last-child {
    margin-bottom: 5px !important;
}

.helpSection {
    margin: 5px 15px 15px 5px;
    padding: 10px;
    border-radius: 15px;
    min-width: 250px;
}

.signaturePad {
    margin: 5px;
    width: 400px;
    height: 150px;
    cursor: crosshair;
    border-radius: 8px;
    box-shadow: var(--insetShadow);
}

.productsContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 5px;
}

.productContainer {
    margin: 5px;
    padding: 10px;
    border-radius: 15px;
}

.productContainer > div:first-child {
    background-color: inherit;
}

.surroundedText {
    margin: 5px;
    padding: 10px;
    border-radius: 15px;
    font-size: var(--coomanFontSize);
    font-family: 'Titillium Web', sans-serif;
}

.surroundedTextSmall {
    margin: 5px;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    font-family: 'Titillium Web', sans-serif;
    word-break: break-word;
}

.highlightSurrounder {
    margin: 5px;
    padding: 5px 10px;
    border-radius: 8px;
}

.textSmall {
    font-size: 12px !important;
}

.textMedium {
    font-size: 16px !important;
}

.textBig {
    font-size: 18px !important;
}

.textLarge {
    font-size: 25px !important;
}

.letterSpacing {
    letter-spacing: 2px;
}

.accountTypeDescription {
    font-family: 'Titillium Web', sans-serif;
    margin: 10px;
    min-height: 300px;
}

.accountTypeDescription ul {
    line-height: 200%;
    list-style: none;
    margin-left: -40px;
}

.accountTypeDescription ul li {
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}

.accountTypeDescription ul li:last-child {
    border-bottom: none;
}

.accountTypeDescription ul li::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f00c';
    padding-right: 10px;
}

.accountTypeDescription ul li.positive::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f058';
    padding-right: 10px;
    color: #0a0;
}

.accountTypeDescription ul li.negative::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f057';
    padding-right: 10px;
    color: #888;
}

.accountTypeDescription ul li.info::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f05a';
    padding-right: 10px;
    color: #fa0;
}

.accountTypeDescription ul li.negative {
    color: #888;
}

.clr-clear,
.clr-close {
    padding: 3px 5px 3px 5px !important;
    font-family: 'Titillium Web', sans-serif !important;
    background-color: var(--coomanBlue) !important;
    border-radius: 8px !important;
    transition: border-radius 0.1s;
}

.clr-clear:hover,
.clr-close:hover {
    filter: brightness(110%);
}

.clr-clear:active,
.clr-close:active {
    border-radius: 15px !important;
}

.colorField {
    width: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    cursor: pointer !important;
    border-radius: 8px !important;
}

.clr-field {
    margin-left: 5px;
}

.clr-field button {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px !important;
}

.the-datepicker__main,
.the-datepicker__day--today {
    margin: 5px !important;
}

.the-datepicker__day--today {
    border-radius: 0.3em !important;
}

.the-datepicker__main {
    border-radius: 8px !important;
}

.the-datepicker__resetButton::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f0e2';
}

.the-datepicker__closeButton::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f057';
    color: #f00;
}

.the-datepicker__previousButton::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f053';
}

.the-datepicker__nextButton::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f054';
}

#controlsContainer {
    width: 100% !important;
}

.versionInfo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.versionInfo .versionLogo {
    margin: 5px;
    height: 50px;
    aspect-ratio: 2/1;
    background: url('../images/main/cooman_logo_full_blue.svg') no-repeat center center;
    background-size: contain;
}

.versionInfo p {
    margin: 10px;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    font-weight: bold;
    color: var(--coomanBlue);
}

#introContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#introLogo {
    height: 150px;
    aspect-ratio: 2/1;
    background-image: url('../images/main/cooman_logo_full_white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    animation: introLogoMoveIn 1s ease-in-out;
}

#introText {
    margin: 20px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #fff;
    text-align: center;
    animation: introTextMoveIn 1.2s ease-in-out;
}

#logo {
    margin: 30px;
    height: 70px;
    width: auto;
    background: url('../images/main/cooman_logo_full_blue.svg') no-repeat center center;
    background-size: contain;
}

.loadingIndicator {
    width: 18px;
    height: 18px;
    background: url('../images/main/loadingIndicator.svg') no-repeat center center;
    background-size: contain;
}

.loadingIndicatorCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: url('../images/main/loadingIndicator.svg') no-repeat center center;
    background-size: contain;
}

multi-input,
user-input {
    margin: 5px;
    padding: 5px;
    width: 97%;
    border-radius: 5px;
    font-family: 'Titillium Web', sans-serif;
}

multi-input .item,
user-input .item {
    border-radius: 3px;
}

.prefBox {
    margin: auto;
    height: 400px;
    border: 1px solid #07d;
    border-radius: 5px;
}

.positionRelative {
    position: relative;
}

.stickyTop {
    position: sticky;
    top: 68px;
}

.hidden {
    display: none !important;
}

.blockElement {
    display: block;
}

.filterContainer {
    display: inline-flex;
    justify-content: flex-start;
    flex-flow: wrap;
}

.flexboxInlineStart {
    display: inline-flex;
    justify-content: flex-start;
    flex-flow: wrap;
}

.flexboxInlineStartAlignCenter {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: wrap;
}

.flexboxInlineStartAlignBottom {
    display: inline-flex;
    justify-content: flex-start;
    align-items: end;
    flex-flow: wrap;
}

.flexboxStart {
    display: flex;
    align-items: start;
    flex-flow: wrap;
}

.flexboxCenter {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
}

.flexboxCenterCenter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
}

.flexboxSpaceB {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}

.flexboxSpaceBCenter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
}

.flexboxColumn {
    display: flex;
    flex-direction: column !important;
    flex-flow: wrap;
}

.flexboxForm {
    display: flex;
    flex-direction: row !important;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 30px;
    vertical-align: bottom;
}

.flexboxCheckout {
    display: flex;
    flex-direction: row !important;
    gap: 10px;
}

.flexboxCheckout > div:first-child {
    width: 60%;
}

.flexboxCheckout > div:last-child {
    width: 40%;
}

.flexNoWrap {
    flex-wrap: nowrap !important;
}

.gap5 {
    gap: 5px;
}

.gap8 {
    gap: 8px;
}

.gap10 {
    gap: 10px;
}

.gap15 {
    gap: 15px;
}

.pwdCred {
    font-family: 'Titillium Web', sans-serif;
    font-size: 10px;
}

.alignLeft {
    text-align: left;
}

.alignRight {
    text-align: right;
}

.alignCenter {
    text-align: center;
}

.picHeight100 {
    margin: 5px;
    height: 100px;
    width: auto;
}

.picHeight60 {
    margin: 5px;
    height: 60px;
    width: auto;
}

.picHeight30 {
    margin: 5px;
    height: 30px;
    width: auto;
}

.picHeight15 {
    margin: 5px;
    height: 15px;
    width: auto;
}

.lineHeight50 {
    line-height: 50%;
}

.lineHeight100 {
    line-height: 100%;
}

.lineHeight120 {
    line-height: 120%;
}

.lineHeight200 {
    line-height: 200%;
}

.margin-5 {
    margin: -5px !important;
}

.margin0 {
    margin: 0 !important;
}

.margin5 {
    margin: 5px !important;
}

.margin6 {
    margin: 6px !important;
}

.margin8 {
    margin: 8px !important;
}

.margin10 {
    margin: 10px !important;
}

.margin15 {
    margin: 15px !important;
}

.margin20 {
    margin: 20px !important;
}

.margin30 {
    margin: 30px !important;
}

.marginTop0 {
    margin-top: 0 !important;
}

.marginTop3 {
    margin-top: 3px !important;
}

.marginTop5 {
    margin-top: 5px !important;
}

.marginTop10 {
    margin-top: 10px !important;
}

.marginTop13 {
    margin-top: 13px !important;
}

.marginTop15 {
    margin-top: 15px !important;
}

.marginTop20 {
    margin-top: 20px !important;
}

.marginTop30 {
    margin-top: 30px !important;
}

.marginTop40 {
    margin-top: 40px !important;
}

.marginTop60 {
    margin-top: 60px !important;
}

.marginTop120 {
    margin-top: 120px !important;
}

.marginBottom0 {
    margin-bottom: 0 !important;
}

.marginBottom5 {
    margin-bottom: 5px !important;
}

.marginBottom10 {
    margin-bottom: 10px !important;
}

.marginBottom15 {
    margin-bottom: 15px !important;
}

.marginBottom20 {
    margin-bottom: 20px !important;
}

.marginBottom30 {
    margin-bottom: 30px !important;
}

.marginBottom40 {
    margin-bottom: 40px !important;
}

.marginBottom60 {
    margin-bottom: 60px !important;
}

.marginBottom120 {
    margin-bottom: 120px !important;
}

.marginLeftAuto {
    margin-left: auto !important;
}

.marginLeft5 {
    margin-left: 5px !important;
}

.marginLeft10 {
    margin-left: 10px !important;
}

.marginLeft-20 {
    margin-left: -20px !important;
}

.marginRight10 {
    margin-right: 10px !important;
}

.marginRight20 {
    margin-right: 20px !important;
}

.marginX5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.marginX10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.marginX20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.marginX40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}

.marginY6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
}

.marginY10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.marginY20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.marginY50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.padding5 {
    padding: 5px !important;
}

.padding10 {
    padding: 10px !important;
}

.padding15 {
    padding: 15px !important;
}

.paddingTop2 {
    padding-top: 2px !important;
}

.paddingTop5 {
    padding-top: 5px !important;
}

.paddingTop10 {
    padding-top: 10px !important;
}

.paddingLeft0 {
    padding-left: 0 !important;
}

.paddingX5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.paddingY10 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.radius0 {
    border-radius: 0 !important;
}

.radius5 {
    border-radius: 5px !important;
}

.radius8 {
    border-radius: 8px !important;
}

.radius15 {
    border-radius: 15px !important;
}

.radius20 {
    border-radius: 20px !important;
}

.radius25 {
    border-radius: 25px !important;
}

.font {
    font-family: 'Titillium Web', sans-serif;
}

.break {
    word-break: normal;
    overflow-wrap: anywhere;
}

.breakAll {
    word-break: break-all;
}

.bold {
    font-weight: 700;
}

.normal {
    font-weight: normal;
}

.italic {
    font-style: italic;
}

.dividerVertical {
    margin: 0 10px 0 10px;
    height: 30px;
}

.dividerHorizontal,
.dividerHorizontalDouble {
    position: relative;
    margin: 20px 0 20px 0;
}

.addButtonOverlay {
    position: absolute;
    padding: 0 10px;
    min-width: 190px;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.height25 {
    height: 25px;
}

.height70 {
    height: 70px;
}

.minHeight25 {
    min-height: 25px;
}

.minHeight45 {
    min-height: 45px;
}

.minHeight100 {
    min-height: 100px;
}

.minHeight150 {
    min-height: 150px;
}

.minHeight180 {
    min-height: 180px;
}

.minHeight240 {
    min-height: 240px;
}

.minHeight250 {
    min-height: 250px;
}

.maxHeight50 {
    max-height: 50px;
}

.maxHeight200 {
    max-height: 200px;
}

.maxHeight390 {
    max-height: 390px;
}

.maxHeight850 {
    max-height: 850px;
}

.maxWidth70 {
    max-width: 70px;
}

.maxWidth100 {
    max-width: 100px;
}

.maxWidth120 {
    max-width: 120px;
}

.maxWidth150 {
    max-width: 150px;
}

.maxWidth160 {
    max-width: 160px;
}

.maxWidth170 {
    max-width: 170px;
}

.maxWidth190 {
    max-width: 190px;
}

.maxWidth200 {
    max-width: 200px;
}

.maxWidth250 {
    max-width: 250px;
}

.maxWidth300 {
    max-width: 300px;
}

.maxWidth350 {
    max-width: 350px;
}

.maxWidth450 {
    max-width: 450px;
}

.maxWidth460 {
    max-width: 460px;
}

.maxWidth550 {
    max-width: 550px;
}

.maxWidth600 {
    max-width: 600px;
}

.maxWidth700 {
    max-width: 700px;
}

.maxWidth800 {
    max-width: 800px;
}

.maxWidth900 {
    max-width: 900px;
}

.maxWidth1600 {
    max-width: 1600px !important;
}

.maxWidth91p {
    max-width: 91% !important;
}

.maxWidth100p {
    max-width: 100% !important;
}

.width13 {
    width: 13px !important;
}

.width30 {
    width: 30px !important;
}

.width35 {
    width: 35px !important;
}

.width45 {
    width: 45px !important;
}

.width80 {
    width: 80px !important;
}

.width100 {
    width: 100px !important;
}

.width120 {
    width: 120px !important;
}

.width200 {
    width: 200px !important;
}

.width300 {
    width: 300px !important;
}

.width212 {
    width: 212px !important;
}

.width33p {
    width: 33% !important;
}

.width50p {
    width: 50% !important;
}

.width90p {
    width: 90% !important;
}

.width95p {
    width: 95% !important;
}

.width97p {
    width: 97% !important;
}

.width97-5p {
    width: 97.5% !important;
}

.width100p {
    width: 100% !important;
}

.heightWidth25 {
    height: 25px;
    width: 25px;
}

.heightWidth35 {
    height: 35px;
    width: 35px;
}

.heightWidth200 {
    height: 200px;
    width: 200px;
}

.minWidthUntilLower500 {
    min-width: 500px;
}

.minWidthUnset {
    min-width: unset !important;
}

.maxContainerWidth {
    min-width: 1170px !important;
}

.defaultContainerWidth {
    min-width: 800px !important;
}

.entryContainerLateBreak {
    flex-direction: unset !important;
}

.entryContainer {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}

.entryContainer .entryButtonsContainer {
    display: flex;
    align-items: center;
    flex-flow: wrap;
}

.entryContainer .userProfileIcon {
    margin: 0 0 0 5px;
    font-size: 35px;
    color: var(--coomanBlue);
}

.entryContainer .userProfileImage {
    margin: 0 0 0 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.areaSection .userProfileImage {
    margin: 5px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.flexboxFormInputWidth {
    min-width: 300px;
    width: 95% !important;
}

.flexboxFormTextareaWidth {
    min-width: 300px;
}

.flexboxFormInputWidthSmall {
    min-width: 180px;
    width: 95% !important;
}

.flexboxFormSelectWidth {
    min-width: 314px;
    width: 98% !important;
}

.individualSize16 {
    font-size: 16px !important;
}

.individualWidth300 {
    width: 300px !important;
}

.individualWidth400 {
    width: 400px !important;
}

.individualWidth550 {
    width: 550px !important;
}

.firstRunContainerWidth {
    width: 800px !important;
}

.individualWidth1000 {
    width: 1000px !important;
}

.individualWidth97p {
    width: 97% !important;
}

.overflowScrollAuto {
    overflow: auto;
}

.overflowHiden {
    overflow: hidden;
}

.listEntry {
    border-bottom: 1px solid #888;
    padding-top: 5px;
    padding-bottom: 10px;
}

.listStyle .listEntry:first-child {
    padding-top: 0;
}

.listStyle .listEntry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.yearAfterPrefix {
    margin: 10px 10px 10px 20px;
    padding-top: 20px;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    text-align: left;
}

.dividerLabel {
    margin: 3px 5px 5px 0;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
}

.swal2-container {
    z-index: 10001 !important;
}

.swal2-html-container {
    font-family: 'Titillium Web', sans-serif;
}

.swal2-modal {
    border-radius: 25px;
}

#swal2-input {
    font-size: var(--coomanFontSize);
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 8px;
}

#swal2-select {
    font-size: var(--coomanFontSize);
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 8px;
}

.swal2-styled.swal2-confirm,
.swal2-styled.swal2-cancel {
    border-radius: 8px !important;
}

.swal2-styled.swal2-confirm {
    background-color: var(--coomanBlue) !important;
}

.policy {
    padding: 10px 20px 10px 20px;
}

.policy p,
.policy ul {
    margin: 10px 5px 20px 5px;
    font-family: 'Titillium Web', sans-serif;
}

.policy ul {
    list-style: initial;
}

.policy h2 {
    margin: 10px 5px 0 5px;
    font-size: 16px;
}

.infoLeft {
    margin: 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    text-align: left;
}

.infoRight {
    margin: 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    text-align: right;
}

.infoCenter {
    margin: 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    text-align: center;
}

.messageBox {
    position: fixed;
    z-index: 10001;
    bottom: 0;
    width: 100%;
}

.messageBox p {
    margin: 25px;
    padding: 10px;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    color: #fff;
    font-weight: bold;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 15px;
    box-shadow: 0 0 5px 0 #333;
}

.messageBox .suc {
    background-color: #0a0;
}

.messageBox .err {
    background-color: #f00;
}

.button,
.redButton {
    cursor: pointer;
    margin: 5px;
    padding: 7px 10px 7px 10px;
    color: #fff;
    font-weight: normal;
    font-size: var(--coomanFontSize);
    background-image: var(--coomanBlueGradient);
    border: none;
    border-radius: 8px;
    font-family: 'Titillium Web', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transition: border-radius 0.1s;
}

.redButton {
    background: #f00;
}

.button:hover,
.redButton:hover {
    filter: brightness(110%);
}

.button:active,
.redButton:active {
    border-radius: 15px;
}

.button:disabled,
.redButton:disabled {
    border-radius: 8px;
    cursor: not-allowed;
    opacity: 0.5;
    filter: brightness(100%);
}

.linkButton {
    text-decoration: none !important;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    padding: 7px 10px 7px 10px;
    display: inline-block;
    background-color: transparent;
    color: var(--coomanBlue) !important;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    -webkit-user-select: none;
    user-select: none;
    transition: border-radius 0.1s;
}

.linkButton a {
    text-decoration: none !important;
}

.linkButton:hover {
    background-color: #eee;
    border-radius: 8px;
}

.linkButton:active {
    border-radius: 15px;
}

.categoryButton {
    font-size: 15px !important;
    color: var(--black) !important;
    background-color: transparent;
}

.datalistHeight {
    max-height: min(33vh, 300px) !important;
}

.datalist {
    position: absolute;
    z-index: 11000;
    margin: 10px 5px 0 0;
    padding: 0;
    border-radius: 8px;
    max-height: min(33vh, 300px);
    overflow-y: auto;
    text-decoration: none;
}

.datalist > li {
    font-family: 'Titillium Web', sans-serif;
    margin: 5px;
    padding: 5px;
    background-color: transparent;
    color: var(--coomanBlue);
    font-size: var(--coomanFontSize);
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.datalist > li:hover,
.datalist .active {
    background-color: var(--coomanBlue);
    color: #fff;
    border-radius: 5px;
}

.dropDown,
.dropDownMedium,
.dropDownLarge {
    margin: 5px;
    padding: 5px 30px 5px 5px;
    height: 37px;
    font-size: var(--coomanFontSize);
    border-radius: 8px;
    box-shadow: var(--insetShadow);
    font-family: 'Titillium Web', sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.dropDownMedium {
    min-width: 262px;
}

.dropDownLarge {
    min-width: 312px;
}

.dropDown:hover,
.dropDownMedium:hover,
.dropDownLarge:hover {
    border: 1px solid var(--coomanBlue);
}

.limitDropDownWidth300 {
    max-width: 300px;
}

.limitDropDownWidth325 {
    max-width: 325px;
}

.checkmarkBefore::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f058  ';
    font-size: 15px;
}

.dirty {
    border: 1px solid #f00 !important;
}

.error {
    background-color: #f00;
    padding: 10px;
    margin: 0 5px 20px 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    color: #fff;
    text-align: center;
    border-radius: 25px;
}

.success {
    background-color: #0c0;
    padding: 10px;
    margin: 0 5px 20px 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    color: #fff;
    text-align: center;
    border-radius: 25px;
}

table {
    text-align: left;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    line-height: 150%;
    margin: 5px;
    border-collapse: collapse;
}

.formTable,
.formTableLarge,
.dividerTable {
    margin: -5px;
}

.formTable td,
.formTableLarge td {
    vertical-align: bottom;
}

.dividerTable {
    line-height: 120%;
}

.dividerTable i {
    margin-left: 5px;
    margin-top: -0.5px;
}

.verticalAlignSuper {
    vertical-align: super !important;
}

.verticalAlignTop {
    vertical-align: top !important;
}

.verticalAlignCenter {
    vertical-align: center !important;
}

.verticalAlignBottom {
    vertical-align: bottom !important;
}

.actionButton {
    color: var(--coomanBlue) !important;
    background-color: var(--white) !important;
    cursor: pointer;
}

.dangerButton {
    color: var(--red) !important;
    background-color: var(--white) !important;
    cursor: pointer;
}

.actionButton i {
    color: var(--coomanBlue) !important;
}

.dangerButton i {
    color: var(--red) !important;
}

.actionButton:hover {
    color: var(--white) !important;
    background-color: var(--coomanBlue) !important;
    border-color: var(--coomanBlue) !important;
}

.dangerButton:hover {
    color: var(--white) !important;
    background-color: var(--red) !important;
    border-color: var(--red) !important;
}

.actionButton:hover i,
.dangerButton:hover i {
    color: var(--white) !important;
}

.themedThead {
    color: #fff;
}

th,
td {
    padding: 5px;
}

.tdPaddingBottom {
    padding-bottom: 20px;
}

.tdTextAlignRight {
    text-align: right;
}

.tdAlignVerticalCenter {
    vertical-align: center;
}

.posNumber {
    text-align: center;
    padding: 5px;
    width: 25px;
    border-radius: 25px;
}

.posNettoComplete {
    margin: 5px;
    padding: 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
}

.removeButton {
    margin-top: 10px;
    margin-right: 5px;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    user-select: None;
    color: #f00;
    cursor: pointer;
}

.removeButton i {
    font-size: 20px !important;
}

.textArea {
    margin: 5px;
    padding: 5px;
    font-size: var(--coomanFontSize);
    border-radius: 8px;
    box-shadow: var(--insetShadow);
    font-family: 'Titillium Web', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    overflow: auto;
}

.textArea:hover {
    border: 1px solid var(--coomanBlue);
}

.textArea:focus {
    border: 1px solid var(--coomanBlue);
}

h1 {
    margin: 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
}

h2 {
    margin: 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
}

h3 {
    margin: 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 16px;
}

li {
    font-family: 'Titillium Web', sans-serif;
    font-size: 16px;
}

.helpMenu,
.helpMenu ul,
.helpMenu li {
    padding: 5px 0 5px 0;
    list-style: none;
    line-height: 120%;
    font-family: 'Titillium Web', sans-serif;
    text-align: left;
}

.helpMenu li {
    margin-left: 10px;
}

.helpMenu li > ul {
    margin-left: 10px;
}

.noListStyle li {
    list-style: none;
    margin-left: -35px;
}

label {
    margin: 5px;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    color: #333;
    text-align: left;
}

sup {
    color: #f00;
    vertical-align: baseline;
}

sup::before {
    content: ' ';
}

a {
    color: #07d;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #07d;
}

.linkIcon {
    cursor: pointer;
    color: var(--coomanBlue);
    font-size: 11px;
}

.smallIcon {
    font-size: 11px;
}

.mediumIcon {
    font-size: 15px;
}

.largeIcon {
    font-size: 25px;
}

.veryLargeIcon {
    font-size: 50px;
}

.ultraLargeIcon {
    font-size: 70px;
}

#posCounter,
#deliveryNotesIDs,
#budgetInvoicesIDs,
#editTax,
#saveArticles,
#noConnectionInfo,
#disconnectedInfo {
    display: none;
}

input[type='checkbox'] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 18px;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

input[type='checkbox']:hover {
    border-color: var(--coomanBlue);
}

input[type='checkbox']:checked {
    background-color: var(--coomanBlue);
    border-color: var(--coomanBlue);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNCA4LjVMNi44IDEyTDExIDQiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPg==');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}

.searchField {
    margin: 5px 1px 5px 0;
    padding: 5px 35px 5px 5px;
    width: 150px;
    font-size: var(--coomanFontSize);
    border-radius: 8px;
    box-shadow: var(--insetShadow);
    font-family: 'Titillium Web', sans-serif;
    text-overflow: ellipsis;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}

.searchField:hover {
    border: 1px solid #07d;
}

.searchField:focus {
    border: 1px solid #07d;
}

.clearSearchFieldButton {
    position: absolute;
    top: 9px;
    left: 161px;
    display: none;
    color: #f00;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

#clearContactSearchFieldButton, #clearUserSearchFieldButton, #clearInventorySearchFieldButton {
    display: none;
    color: #f00;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.inputField,
.inputFieldMedium,
.inputFieldLarge {
    margin: 5px;
    padding: 5px;
    width: 200px;
    font-size: var(--coomanFontSize);
    border-radius: 8px;
    box-shadow: var(--insetShadow);
    font-family: 'Titillium Web', sans-serif;
    text-overflow: ellipsis;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}

.inputFieldMedium {
    min-width: 250px;
}

.inputFieldLarge {
    min-width: 300px;
}

.inputField:hover,
.inputFieldMedium:hover,
.inputFieldLarge:hover {
    border: 1px solid var(--coomanBlue);
}

.inputField:focus,
.inputFieldMedium:focus,
.inputFieldLarge:focus {
    border: 1px solid var(--coomanBlue);
}

.inputField:disabled,
.inputFieldMedium:disabled,
.inputFieldLarge:disabled {
    opacity: 0.5;
    border: 1px solid var(--lightGrey);
}

.dashboardModulesContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.statusGrid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
}

.dashboardModulesContainer .userBox .userProfileIcon {
    font-size: 35px;
}

.dashboardModulesContainer .userBox .userProfileImage {
    margin: 2px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.dashboardModulesContainer .userBox .title {
    font-family: 'Titillium Web', sans-serif;
    font-weight: bold;
    font-size: 14px;
}

.dashboardModulesContainer .userBox .subTitle {
    font-family: 'Titillium Web', sans-serif;
    font-size: 11px;
}

.dashboardModulesContainer .dashboardButton {
    cursor: pointer;
    margin: 5px;
    padding: 10px;
    border-radius: 15px;
    font-family: 'Titillium Web', sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    user-select: none;
    transition: all 0.1s;
}

.dashboardModulesContainer .dashboardButton:hover {
    transform: scale(1.05);
}

.dashboardModulesContainer .dashboardButton:active {
    transform: scale(1);
}

.dashboardModulesContainer .dashboardButton i {
    font-size: 25px;
}

.dashboardModulesContainer .dashboardButton .state {
    white-space: nowrap;
    max-width: 200px;
    min-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboardModulesContainer .dashboardButton .title {
    font-weight: bold;
    font-size: 16px;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.dashboardModulesContainer .dashboardButton .subTitle {
    font-weight: bold;
    font-size: 12px;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.dashboardModulesContainer .dashboardButton .subTitle i {
    margin: 0 0 0 1px;
    width: 15px;
    font-size: 12px;
}

.innerContainer .mobileControlButton {
    margin: 5px;
    padding: 5px;
}

.tooltip {
    position: relative;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    font-family: 'Titillium Web', sans-serif;
    text-align: center;
    border-radius: 8px;
    padding: 5px 0;
    margin-bottom: 5px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    user-select: none;
}

.tooltip .tooltiptext::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.moveArrow {
    margin: 5px;
    cursor: pointer;
    user-select: none;
}

.moveArrow:hover {
    color: #07d;
}

#captchaCode {
    margin: 5px;
    width: 140px;
}

#fileStorageContainer {
    margin: 5px;
    padding: 5px 10px 5px 20px;
    max-height: 300px;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Titillium Web', sans-serif;
    user-select: none;
    overflow: auto;
}

#fileStorageContainer ul {
    margin-left: -25px;
    line-height: 150%;
    list-style: none;
}

#fileStorageContainer li {
    margin-left: -25px;
    line-height: 150%;
}

.fileStorageEntry a {
    text-decoration: none;
}

#fileStoragePathHistory a {
    padding: 5px;
    border: 1px solid transparent;
    border-radius: 5px;
}

#cookie a {
    color: var(--coomanBlue);
    text-decoration: none;
}

#cookie a:hover {
    text-decoration: underline;
}

#cookie div {
    padding: 20px;
}

#cookie p {
    color: #fff !important;
}

#cookie {
    text-align: center;
    font-family: 'Titillium Web', sans-serif;
    font-size: var(--coomanFontSize);
    background-color: rgba(20, 20, 20, 0.9);
    position: fixed;
    bottom: 0;
    z-index: 10001;
    width: 100%;
}

.elementLocked {
    pointer-events: none !important;
    opacity: 0.5 !important;
}

.cursorNormal {
    cursor: unset;
}

.cursorPointer {
    cursor: pointer;
}

.cursorHelp {
    cursor: help;
}

.cursorNotAllowed {
    cursor: not-allowed;
}

.borderNone {
    border: none !important;
}

.borderGreen {
    border: 1px solid #0a0 !important;
}

.borderGoldenrod {
    border: 1px solid #f90 !important;
}

.borderRed {
    border: 1px solid #f00 !important;
}

.borderCoomanBlue {
    border: 1px solid #07d !important;
}

.borderColorWhite {
    border-color: #fff !important;
}

.textGreen {
    color: #0a0 !important;
}

.textLightGreen {
    color: #0c0 !important;
}

.textRed {
    color: #f00 !important;
}

.textGoldenrod {
    color: #f90 !important;
}

.textWhite {
    color: #fff !important;
}

.textGrey {
    color: #eee !important;
}

.textAnthracite {
    color: #555 !important;
}

.textBlack {
    color: #000 !important;
}

.opacity50p {
    opacity: 0.5 !important;
}

.textCoomanBlueGradient {
    color: var(--coomanBlue);
    background: var(--coomanBlueGradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.textDarkBlue {
    color: #037 !important;
}

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

.bgCoomanBlue {
    background-image: unset;
    background-color: var(--coomanBlue) !important;
}

.bgDarkBlue {
    background-image: unset;
    background-color: #037 !important;
}

.bgDarkgrey {
    background-image: unset;
    background-color: #aaa !important;
}

.bgAnthracite {
    background-image: unset;
    background-color: #555 !important;
}

.bgGrey {
    background-image: unset;
    background-color: #eee !important;
}

.bgDropdownGrey {
    background-color: #eee !important;
}

.bgWhite {
    background-image: unset;
    background-color: #fff !important;
}

.bgGreen {
    background-image: unset;
    background-color: #0a0 !important;
}

.bgLightGreen {
    background-image: unset;
    background-color: #0d0 !important;
}

.bgRed {
    background-image: unset;
    background-color: #f00 !important;
}

.bgBlack {
    background-image: unset;
    background-color: #000 !important;
}

.bgGoldenrod {
    background-image: unset;
    background-color: #f90 !important;
}

.elementSelected {
    background-image: unset;
    background-color: var(--coomanBlue) !important;
    color: #fff !important;
}

.elementSelected::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f00c  ';
}

@media only screen and (max-width: 1250px) and (min-width: 901px) {
    .flexboxCheckout .formTableLarge td {
        width: 100%;
        float: left;
    }

    .flexboxCheckout .formTableLarge input {
        width: 90% !important;
    }
}

@media only screen and (max-width: 1250px) {
    .maxContainerWidth {
        min-width: 1000px !important;
    }

    #positions .designation {
        width: 40% !important;
    }

    #positions .description {
        width: calc(98% - 2px) !important;
    }
}

@media only screen and (max-width: 1100px) {
    .maxContainerWidth {
        min-width: 800px !important;
    }

    #designOptions {
        max-height: 100%;
    }

    #contentContainer {
        padding: 90px 10px 10px 10px;
    }

    .individualWidth1000 {
        width: auto !important;
    }

    #statisticsFilterContainer {
        flex-direction: column;
        gap: 15px;
    }

    .stickyTop {
        top: 58px;
    }
}

@media only screen and (max-width: 1000px) {
    .coomanModalWidth80p {
        width: 80%;
    }

    .the-datepicker__main {
        transform: scale(0.9) !important;
        transform-origin: top left;
    }

    #areaContainer {
        padding: 10px;
        flex-direction: column;
    }

    #areaMenu,
    #areaContent {
        width: 100% !important;
    }

    #areaMenuButton {
        display: block;
    }

    #areaMenu {
        position: absolute;
        display: none;
        z-index: 10000;
        padding: 10px;
        border-radius: 15px;
        width: 210px !important;
        top: 55px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 0 5px 0 #555;
    }

    .flexboxForm {
        display: flex;
        flex-direction: column !important;
        flex-flow: wrap;
        gap: 15px;
    }

    .flexboxFormTextareaWidth,
    .flexboxFormInputWidth,
    .flexboxFormInputWidthSmall {
        min-width: auto !important;
        width: 95% !important;
    }

    .flexboxFormSelectWidth {
        min-width: auto !important;
        width: 97% !important;
    }

    #positions .designation {
        width: 35% !important;
    }

    #positions .description {
        width: calc(97% + 3px) !important;
    }

    .entryContainer {
        flex-direction: column;
    }

    .limitDropDownWidth325 {
        max-width: unset;
    }
}

@media only screen and (max-width: 900px) {
    .maxContainerWidth,
    .defaultContainerWidth {
        min-width: 650px !important;
    }

    .firstRunContainerWidth {
        width: auto !important;
    }

    #positions .description {
        width: 97% !important;
    }

    .flexboxCheckout {
        flex-direction: column !important;
    }

    .flexboxCheckout > div:first-child {
        width: auto;
    }

    .flexboxCheckout > div:last-child {
        width: auto;
    }
}

@media only screen and (max-width: 750px) {
    .maxContainerWidth,
    .defaultContainerWidth {
        min-width: 550px !important;
    }

    .limitDropDownWidth300 {
        max-width: unset;
    }

    .formTableLarge td:not(.the-datepicker__row td) {
        width: 100%;
        float: left;
    }

    .formTableLarge input:not([type='checkbox']),
    .formTableLarge textarea,
    .formTableLarge multi-input,
    .formTableLarge user-input {
        width: 87% !important;
    }

    .formTableLarge select {
        width: 90% !important;
    }

    .borderBoxFullWidth {
        width: 98% !important;
    }

    #positions .designation {
        width: 98% !important;
    }

    #positions .multiplier {
        width: 98% !important;
    }

    #positions .unit {
        width: 98% !important;
    }

    #positions .tax {
        width: 98% !important;
    }

    #positions .netto {
        width: 98% !important;
    }

    #positions .description {
        width: 96% !important;
    }

    #documentOptions .flexboxInlineStart {
        display: block;
    }

    #documentOptions select {
        min-width: unset !important;
        width: 98% !important;
    }

    #documentOptions input:not([type='checkbox']) {
        min-width: unset !important;
        width: 96% !important;
    }

    .signaturePad {
        width: 98%;
    }
}

@media only screen and (max-width: 670px) {
    .maxContainerWidth,
    .defaultContainerWidth {
        min-width: 450px !important;
    }

    .dashboardButton .state {
        max-width: unset;
        overflow: unset;
    }

    .inputField {
        min-width: auto;
        width: 200px;
    }

    .individualWidth550 {
        width: auto !important;
    }

    .individualWidth97p {
        width: 95% !important;
    }

    .minWidthUntilLower500 {
        min-width: unset;
    }

    .flexboxFormSelectWidth {
        width: 98% !important;
    }
}

@media only screen and (max-width: 600px) {
    .filterContainer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .filterContainer button {
        text-align: left;
    }

    .statisticsInfoContainer {
        grid-template-columns: 100%;
        grid-gap: 5px;
    }

    .statisticsDataContainer {
        gap: unset;
        flex-direction: column;
    }

    .statisticsDataContainer > div {
        display: block;
        gap: unset;
        width: 100%;
    }

    .statisticsChartHeader {
        white-space: unset;
        max-width: unset;
    }
}

@media only screen and (max-width: 550px) {
    .maxContainerWidth,
    .defaultContainerWidth {
        min-width: 350px !important;
    }

    #statisticsFilterContainer #endDate {
        margin-bottom: 15px;
    }

    #statisticsFilterContainer .quickButtonGroup {
        gap: 2px;
        max-width: 220px;
    }

    #positions .description,
    #documentOptions input:not([type='checkbox']) {
        width: 95% !important;
    }

    .signaturePad {
        width: 97%;
    }
}

@media only screen and (max-width: 530px) {
    .formTable td:not(.the-datepicker__row td) {
        width: 100%;
        float: left;
    }

    .formTable input,
    .formTable textarea {
        width: 87% !important;
    }

    #conclusion td {
        width: 100%;
        float: left;
    }

    #conclusion input {
        width: 95% !important;
    }

    #conclusion tr:nth-child(3) br {
        display: none;
    }

    #docPathMsg > span {
        max-width: 350px;
    }
}

@media only screen and (max-width: 490px) {
    .borderBoxFullWidth {
        width: 97% !important;
    }

    #positions .description,
    #documentOptions input:not([type='checkbox']) {
        width: 94% !important;
    }
}

@media only screen and (max-width: 450px) {
    .coomanModal .coomanModalContainer {
        padding: 30px 15px 15px 15px;
    }

    .filterContainer {
        grid-template-columns: 1fr;
    }

    .dashboardModulesContainer {
        gap: 0;
    }

    .maxContainerWidth,
    .defaultContainerWidth {
        min-width: 250px !important;
    }

    #introLogo {
        height: 100px;
    }

    #introText {
        font-size: 20px;
    }

    #preloader::after {
        height: 80px;
    }

    .helpSection {
        margin: 5px;
    }

    .textNoWrapOnDesktop {
        white-space: normal !important;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .individualSize16 {
        font-size: 12px !important;
    }

    .individualWidth300 {
        width: auto !important;
    }

    .individualWidth400 {
        width: auto !important;
    }

    .individualWidth97p {
        width: 92% !important;
    }

    .flexboxFormInputWidth,
    .flexboxFormInputWidthSmall,
    .flexboxFormTextareaWidth {
        width: 92% !important;
    }

    .flexboxFormSelectWidth {
        width: 96% !important;
    }

    #docPathMsg > span {
        max-width: 250px;
    }

    #contentContainerScreenCenterDesktop {
        width: auto !important;
        height: auto !important;
        align-items: normal;
    }

    .inputFieldMedium,
    .inputFieldLarge,
    .dropDownMedium,
    .dropDownLarge {
        min-width: auto;
    }

    #credContainer {
        width: 200px;
    }

    #prefix {
        display: block;
    }

    #documentNo {
        max-width: 160px;
    }
}

@media only screen and (max-width: 400px) {
    #statisticsFilterContainer .linkButton {
        width: 100% !important;
    }

    #statisticsFilterContainer .quickButtonGroup {
        display: none;
    }

    #positions .description {
        width: 92% !important;
    }
}

@media only screen and (max-width: 360px) {
    .coomanModal {
        transform: scale(0.9);
    }

    .the-datepicker__main {
        transform: scale(0.8) !important;
    }

    .innerContainer {
        min-width: 220px;
    }

    #positions .description {
        width: 90% !important;
    }

    #documentOptions input:not([type='checkbox']) {
        width: 93% !important;
    }

    .accountTypeDescription ul li {
        font-size: 13px;
    }

    .productsContainer {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }
}
