@charset "UTF-8";

/*@font-face {
    font-family: "Material Symbols";
    src: url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=filter_alt") format("woff2 supports variations"), url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=filter_alt") format("woff2-variations");
    font-style: normal;
    font-weight: 100 700;
}
*/
:root {
    --currenta-primary-color: #ff6d41;
    --ant-ui-hover-color: #6080ff;
    --ant-ui-select-color: #3050ff;
    --ant-ui-inactive-color: #aaa;
    --wizard-step-active-color: #628bff;
    --icon-font-family: Material Symbols;
}
.ant-wizard-container {
    display: flex;
    left: auto;
    right: 0;
    width: 80vw;
    margin: 0 auto;
    align-items: center;
}
.ant-wizard-step {
    display: inline-block;
    margin-right: auto;
}
/* used to render a line between wizard steps, but neither finished nor good looking at the moment */
/* .wizard-step:after {
    content: '';
    position: absolute;
    top: 50%;
    width: -webkit-fill-available;
    margin-left: 3em;
    margin-right: 3em;
    height: 2px;
    border-radius: 1px;
    background-color: var(--wizard-step-color);
} */
.ant-wizard-step:last-of-type:after {
    display: none;
}
.ant-wizard-step:last-of-type {
    margin-right: 0;
}
.ant-wizard-step-icon {
    width: 20px;
    height: 20px;
    background-color: var(--wizard-step-active-color);
    border-radius: 50%;
}
.ant-wizard-step-content {
    margin: 0 auto;
    color: var(--wizard-step-active-color);
}
.ant-wizard-navigation-button {
    background-color: var(--currenta-primary-color);
    color: light-dark( #fff, #000 );
    border-radius: 5px;
    text-align: center;
    font-family: arial;
    padding: 5px 8px;
    margin-right: auto;
    user-select: none;
}
.ant-wizard-navigation-button:hover {
    cursor: pointer;
    background-color: color-mix(in srgb, var(--currenta-primary-color), white 20%);
}

.ant-listview {
    display: inline-block;
    border: solid lightgray 1px;
    border-radius: 3px;
    min-width: 200px;
    min-height: 300px;
    box-shadow: 0px 4px 4px rgba(.1, .1, .1, .05) inset;
}
.ant-listview-item,.ant-listview-item-selected {
    display: block !important;
    border-radius: 3px;
    background-color: transparent;
    color: light-dark(#000, #fff);
    padding: 8px;
}
.ant-listview-item-selected {
    background-color: var(--ant-ui-select-color);
}
.ant-listview-item:hover,.ant-listview-item-selected:hover {
    background-color: var(--ant-ui-hover-color);
}

.ant-picklist-container {
    display: flex;
}
.ant-picklist-selection-button {
    user-select: none;
    color: var(--currenta-primary-color);
    border: var(--currenta-primary-color) solid 3px;
    border-radius: 8px;
    font-family: arial;
    font-weight: bold;
    text-align: center;
    padding: 8px;
    margin: 8px;
}
.ant-picklist-selection-button:hover {
    cursor: pointer;
    background-color: color-mix(in srgb, var(--currenta-primary-color) 20%, transparent);
}

.ant-tag-container {
    width: 100%;
    min-height: 35px;
    border: lightgray solid 1px;
    border-radius: 3px;
    display: block;
    align-items: center;
    cursor: text;
    box-shadow: 0px 4px 4px rgba(.1, .1, .1, .05) inset;
}
.ant-tag-item {
    display: inline-flex;
    align-items: center;
    justify-items: center;
    min-width: fit-content;
    height: 25px;
    margin: 5px 3px;
    padding: 0 5px;
    border-radius: 12.5px;
    cursor: default;
    --tag-content-color: hwb(from oklch(from var(--tag-item-bg-color) l 0 0) h calc(((b - 50) * 999)) calc(((w - 50) * 999)));
    background-color: var(--tag-item-bg-color);
}
.ant-tag-content {
    color: var(--tag-content-color);
    margin: 0 auto;
    font-family: arial;
    user-select: none;
}
.ant-tag-item-button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 3px;
    display: flex;
    align-items: center;
    justify-items: center;
    user-select: none;
    background-color: var(--tag-content-color);
}
.ant-tag-item-button:hover {
    filter: invert(1);
    cursor: pointer;
}
.ant-tag-input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    min-width: 1px;
    width: fit-content;
    height: -webkit-fill-available;
    color: #000;
    border: 0px;
    background-color: transparent;
}
.ant-tag-input:focus {
    outline: 0;
    outline-style: none;
}

.ant-file-upload-container {
    display: block;
    width: 100%;
    min-height: 20vh;
    border: lightgray solid 1px;
    border-radius: 3px;
    box-shadow: 0px 4px 4px rgba(.1, .1, .1, .05) inset;
    align-content: center;
    justify-items: center;
}
.ant-file-upload-item {
    display: flex;
    max-height: 35px;
    width: 100%;
/*    margin-top: 3px;
    margin-bottom: 3px;*/
    align-items: center;
    justify-items: center;
}
.ant-file-upload-item:hover {
    background-color: #eee;
    border-radius: 3px;
}
.ant-file-upload-button {
    margin-right: 3px;
    border-radius: 50%;
    min-width: 15px;
    height: 15px;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: var(--currenta-primary-color);
    color: #000;
}
.ant-file-upload-button:hover {
    filter: invert(1);
    cursor: pointer;
}

.ant-datagrid-container {
    display: table;
    border-collapse: collapse;
    width: 100%;
}

.ant-datagrid-header {
    display: table-header-group;
    border: 1px solid lightgray;
    background-color: #e9e9e9;
}

.ant-datagrid-body {
    display: table-row-group;
    border-left: 1px solid lightgray;
    border-right: 1px solid lightgray;
}

.ant-datagrid-row {
    display: table-row;
    border-bottom: 1px solid lightgray;
    background-color: white;
}

.ant-datagrid-row:nth-child(even) {
    background-color: #f2f2f2;
}

.ant-datagrid-cell, .ant-datagrid-header-cell, .ant-datagrid-body-cell {
    display: table-cell;
}

.ant-datagrid-header-interactive {
    display: inline-flex;
    color: gray;
}

.ant-datagrid-header-interactive:hover {
    color: black;
}

.ant-datagrid-header-cell {
    position: relative;
    color: var(--currenta-primary-color);
    font-weight: bold;
    font-size: 1em;
    padding: 8px;
    display: table-cell;
}

.ant-datagrid-body-cell {
    padding: 3px;
}

