/*
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Bubblegum+Sans&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Londrina+Solid:wght@100;400&family=Quicksand:wght@400;700&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=block');
/*
@font-face {
    font-family: "Base";
    src: url("/eios/css/font/Inter.ttf") format("truetype");
  }
*/
@font-face {
    font-family: Material Symbols Outlined;
    font-style: normal;
    font-weight: 100 700;
    font-display: block;
}

::-webkit-scrollbar {
    width: 10px;
    cursor: pointer;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 1px #808080;
    border-radius: 5px;
    background-color: #404040;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #808080;
    border-radius: 5px;
    cursor: pointer;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #c0c0c0;
    }

span.HoverHintContainer {
    position: relative;
}

[data-title]:hover:before {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}

[data-title]:before {
    content: attr(data-title);
    position: fixed;
    white-space: nowrap;
    bottom: 40px;
    min-width: 200px;
    left: calc(50% + 40px);
    transform: translate(-50%, 0);
    z-index: 1000;
    background-color: var(--color-bg-active);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    font-family: 'DM Sans',sans-serif;
    text-align: center;
}

input, select {
    color: #000000;
    font-weight: normal;
}

.smaller {
    font-size: x-small;
}

.UXButton {
    position: relative;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga";
    width: 40px;
    height: 40px;
    background-color: var(--bgSelected);
    border: none;
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
}

    .UXButton.icon,
    .Symbols {
        font-family: Material Symbols Outlined;
    }

span.Symbols {
    margin: 0 5px 0 20px;
    vertical-align: middle;
    opacity: 0.5;
}

    span.Symbols:first-child {
        margin-left: 0;
    }

    span.Symbols + select {
        margin-left: 0 !important;
    }

input + span.Symbols {
    margin: 0 0 !important;
}

span.Symbols + input {
    margin-left: 0 !important;
}

:root {
    --color-bg-App: #000000;
    --color-bg-toolsbar: #101112;
    --color-bg-window: #202224;
    --color-bg-window-header: #202020;
    --color-txt-window: #ffffff;
    --color-txt-window-header: #ffffff;
    /*--bgDark: #202125;*/
    --bgDark: #000000;
    --bgMedium: #808080;
    --bgLight: #c0c0c0;
    --txtDark: #202020;
    --txtMedium: #a0a0a0;
    --txtLight: #ffffff;
    --headerHeight: 55px;
    --leftMenuWidth: 50px;
    --bgSelected: #ff0060;
    --bgHover: #40ccf0;
    --shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    --radius: 4px;
    --color-bg-low: #202020;
    --color-bg-medium: #404040;
    --color-bg-high: #606060;
    --color-bg-active: #ff0060;
    --color-bg-selected: #ff0060;
    --color-ft-low: rgba(250, 250, 250, 0.6);
}
/*
input:-webkit-autofill {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
}
*/
body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
    outline: none;
    user-select: none;
}

body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    /*    position: fixed;*/
    position: relative;
    overscroll-behavior: contain;
    background-color: var(--color-bg-App);
    color: var(--txtLight);
    font-family: 'DM Sans',sans-serif;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    margin: 0;
}

div.App {
    background-color: #000000;
    padding: 64px 0 0 80px;
    width: 100%;
    height: 100%;
    position: relative;
}

div.AppBar {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    background-color: #282828;
    padding-top: 0px;
    /*   background-image: url(/cwt/ux/img/logo_icon.svg);*/
    background-size: 100%;
    background-position: center 10px;
    background-repeat: no-repeat;
}

div.AppHeader {
    position: fixed;
    left: 80px;
    top: 0;
    width: calc(100vw - 80px);
    height: 64px;
    background-color: #282828;
    z-index: 1;
    display: flex;
    flex-direction: row;
    padding: 0px;
    justify-content: center;
    align-items: center;
    padding: 10px 50px 10px 10px;
    font-size: 24px;
    font-weight: 700;
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 30px;
}

    div.AppHeader h2 {
        padding-right: 0px;
    }

.HeaderLogo {
    height: calc(100%);
    margin: 0 0 0 0px;
    transition: opacity 0.25s;
    cursor: pointer;
    position:absolute;
    right:0;
}

div.AppHeader button {
    cursor: initial;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    background-color: transparent;
}

div.AppBar div.Layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

div.AppBar button {
    background-color: transparent;
    border: none;
    margin: 10px 0 10px 0;
    font-size: 40px;
    cursor: pointer;
    display: block;
    transition: color linear 0.25s;
}

div.AppBar button:first-child {
   margin-bottom: 40px !important;
}

    div.AppBar button.separator {
        margin-bottom: 25px;
    }

        div.AppBar button.separator::after {
            content: "";
            border-bottom: solid 1px #c0c0c0;
            margin: 10px 0;
            display: block;
        }

    div.AppBar button:hover,
    div.AppBar button.Selected {
        color: #4080c0;
    }

div.AppBar div.Menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
}

div.AppBar div.System {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
    align-items: center;
}

div.AppBar div.Infos {
    align-items: center;
    display: flex;
    flex-direction: column;
}

div.AppBar span.Symbols {
    margin: 0 5px 0 0px;
    vertical-align: middle;
    align-items: center;
    opacity: 0.5;
    font-size: 30px;
}

div.ModulesHolder {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-App);
}

div.Table {
    display: table;
    width: 100%;
    height: fit-content;
}

div.TableCaption {
    display: table-caption;
    text-align: left;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #404040;
    font-weight: bold;
    height: 60px;
}

    div.TableCaption button {
        /*   background-color: transparent;*/
        border: none;
        margin: 10px 0 10px 0;
        font-size: 40px;
        cursor: pointer;
        display: block;
        float: right;
        transition: color linear 0.25s;
        width: 40px;
        height: 40px;
        margin: 0;
        margin-left: 10px;
    }

div.TableHeaderRow {
    display: table-header-group;
    background-color: gray;
    font-weight: bold;
    font-size: 14px;
}

div.TableHeaderCell {
    display: table-cell;
    padding: 10px;
    text-align: justify;
    border-bottom: 1px solid black;
    text-align: center;
    border-right: solid 1px #606060;
}

div.TableBody {
    display: table-row-group;
}

div.TableRow {
    display: table-row;
    position: relative;
    background-color: #e8e8e8;
    color: #000000;
    transition: background-color 0.15s;
    cursor: pointer;
}

    div.TableRow:nth-child(2n+1) {
        background-color: #f8f8f8;
    }

        div.TableRow:hover,
        div.TableRow:nth-child(2n+1):hover {
            background-color: #c8d0e0;
        }

div.TableCell {
    display: table-cell;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
    border-right: solid 1px #c0c0c0;
    padding: 5px 10px;
    vertical-align: middle;
    position: relative;
}

div.PropertiesExplorer div.TableCell {
    vertical-align: top;
}

div.TableCell span.Tools {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 6px;
    transform: rotateZ(90deg);
    cursor: pointer;
    transition: color 0.25s;
    width: 40px;
    height: 40px;
    line-height: 32px;
}

    div.TableCell span.Tools:hover {
        color: #ffffff;
    }

div.ListCell span.status,
div.TableCell span.status {
    padding: 5px 10px;
    border-radius: 15px;
}

div.ListCell span.check_X,
div.ListCell span.check_V,
div.TableCell span.check_X,
div.TableCell span.check_V {
    background: url(/cwt/ux/img/Checkbox_off.svg);
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: transparent;
    background-size: 20px !important;
    line-height: 40px;
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
}

div.ListCell span.check_V,
div.TableCell span.check_V {
    background: url(/cwt/ux/img/Checkbox_on.svg);
}

div.TableCell span.status.Booked,
div.ListCell span.status.Booked {
    background-color: #40c040;
    color: #ffffff;
}

div.ListCell span.status.Imported,
div.TableCell span.status.Imported {
    background-color: #808080;
    color: #ffffff;
}

div.ListCell span.status.Available,
div.TableCell span.status.Available {
    background-color: #4040c0;
}

div.ListCell span.passtype,
div.TableCell span.passtype {
    padding: 5px 10px;
    border-radius: 15px;
}

    div.ListCell span.passtype.Mission,
    div.TableCell span.passtype.Mission {
        background-color: #4040c0;
        color: #ffffff;
    }

div.ListCell span.status.Unavailable,
div.TableCell span.status.Unavailable {
    background-color: #f04040;
    color: #ffffff;
}

div.TableCell span.Property {
    font-weight: bold;
    text-align: left;
    display: inline-block;
    width: 100%;
}

div.TableCell span.Value {
    text-align: left;
    display: inline-block;
    width: 100%;
    word-break: break-word;
    user-select: text;
}

div.TableCaption select {
    color: #000000;
    margin: 0 0 0 20px;
    font-weight: normal;
    line-height: 28px;
    font-size: 14px;
    height: 28px;
}

    div.TableCaption select option {
        height: 40px;
    }

div.TableCaption input {
    color: #000000;
    font-weight: normal;
    padding: 0 10px;
    line-height: 22px;
    margin: 0 0 0 20px;
    font-size: 14px;
}

ul.ToolsMenu {
    display: none;
    position: absolute;
    top: 5px;
    right: 5px;
    list-style-type: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
    background-color: #404040;
    z-index: 100;
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
}

    ul.ToolsMenu li {
        display: block;
        position: relative;
        padding: 5px 20px 5px 5px;
        background-repeat: no-repeat;
        background-position: 10px center;
        background-size: 16px;
        cursor: pointer;
        transition: background-color 0.25s;
        text-align: left;
        white-space: nowrap;
        border-bottom: solid 1px #808080;
        display: flex;
        min-width: 150px;
    }

        ul.ToolsMenu li.Separator {
            border-top: solid 10px #808080;
        }

        ul.ToolsMenu li:hover {
            /*    background-color: rgba(255, 255, 255, 0.1);*/
            background-color: var(--bgSelected);
        }

        ul.ToolsMenu li.Confirm:hover {
            background-color: #f04000;
        }

    ul.ToolsMenu lilast-child {
        border-bottom: none;
    }

    ul.ToolsMenu li button {
        background-color: transparent;
        box-shadow: none;
        height: 30px;
        margin: 0 0px 0 0;
        font-size: 20px;
        line-height: 30px;
    }

span.Tools button.butMenu {
    float: right;
    width: 35px;
    height: 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 6px;
    background-color: transparent;
    border: none;
    transform: rotateZ(90deg);
    transition: background-color 0.25s;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: 80%;
}

    span.Tools button.butMenu:hover {
        /*    background-color: var(--bgSelected);*/
    }

div.Window.PropertiesEditor {
    min-width: 400px;
}

div.PassComposerMsg {
    display: block;
    padding: 20px;
    line-height: 40px;
}

    div.PassComposerMsg button {
        float: right;
    }

.Expandable > .ExpandableContent {
    display: none;
    margin-bottom: 20px;
}

.Expandable .Expandable {
    margin-left: 0px;
}

.ExpandableHeader {
    position: relative;
    line-height: 26px;
    height: 34px;
    display: block;
    padding-left: 20px;
    /* vertical-align: middle; */
    font-size: 16px;
    padding-top: 0;
    margin: 0;
    display: block;
    margin-top: 0;
    overflow: hidden;
}

.Expandable .ExpandableHeader::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 0px;
    height: 0px;
    left: 0px;
    top: 10px;
    border-top: solid 8px #ffffff;
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    transform: rotate(-90deg);
    transition: transform 0.25s;
    cursor: pointer;
    transform-origin: center;
}

.Expandable.Expandable_Expanded > .ExpandableHeader::after {
    transform: rotate(0deg);
}

.Expandable.Expandable_Expanded > .ExpandableContent {
    display: block;
    margin-bottom: 10px;
}

div.List {
    display: block;
    position: relative;
    width: 100%;
    background-color: #404040;
}

div.ListCaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    height: 60px;
}

div.ListSubCaption {
    background-color: #505050;
    padding: 10px;
}

div.ListHeader {
    background-color: gray;
    font-weight: bold;
    font-size: 14px;
    width: 100%;
}

div.ListFooter {
    z-index: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-items: center;
    justify-content: space-between;
    background-color: #404040;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: normal;
    height: 60px;
}

div.ListLine {
    display: flex;
}

div.ListItem {
    background-color: #e8e8e8;
    position: relative;
    max-height: initial;
}

    div.ListItem.Expandable_Expanded {
        /*border: solid 5px #0080f0*/
        margin: 5px 0;
    }

    div.ListItem:nth-child(2n+1) {
        background-color: #f8f8f8;
    }

div.ListCell {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    padding: 10px 10px 10px 10px;
    position: relative;
    border-right: solid 1px #c0c0c0;
}

    div.ListCell.ListCellTools {
        overflow: visible;
        max-width: 64px;
    }

div.ListBody {
    display: block;
    color: #000000;
    min-height: calc(100% - 190px);
}

div.ListItemExpandable {
    display: block;
    background-color: #808080;
    padding: 10px;
    display: none;
}

div.ListHeader div.ListLine {
}

div.ListHeader div.ListCell {
    padding: 10px;
    padding-bottom: 20px;
    font-size: 14px;
    border-bottom: 1px solid black;
    text-align: center;
    border-right: solid 1px #606060;
    height: 64px;
}

div.ListCell:first-child {
    max-width: 150px;
}

div.ListCaption select {
    color: #000000;
    margin: 0 0 0 20px;
    font-weight: normal;
    line-height: 28px;
    font-size: 14px;
    height: 28px;
    padding: 0 16px;
    border-radius: 16px;
}

    div.ListCaption select option {
        height: 40px;
    }

div.ListCaption input {
    color: #000000;
    font-weight: normal;
    padding: 0 16px;
    line-height: 22px;
    margin: 0 0 0 20px;
    font-size: 14px;
    border-radius: 16px;
}

    div.ListCaption input[type="checkbox"] {
        width: 32px;
        height: 24px;
        line-height: 24px;
        vertical-align: middle;
        margin: 0 20px 0 0px;
        cursor: pointer;
    }

div.ListItem .ExpandableContent {
    margin: 0;
}

div.ListLine.ExpandableHeader {
    height: auto;
    padding-left: 0;
}

    div.ListLine.ExpandableHeader::after {
        left: 10px;
        top: 20px;
        border-top: solid 8px #404040;
    }

div.ListItem .WidgetHeader {
    display: none;
}

div.ListItem div.TableCaption {
    height: auto;
    color: #ffffff;
}

div.ListTools {
    min-width: 100px;
    display: flex;
    justify-content: flex-end;
}

div.ListCell.ASC::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 0px;
    height: 0px;
    left: auto;
    bottom: 5px;
    border-top: solid 8px #ffffff;
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    transform: rotate(180deg);
    transition: transform 0.25s;
    cursor: pointer;
    transform-origin: center;
}

div.ListCell.DESC::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 0px;
    height: 0px;
    left: auto;
    bottom: 5px;
    border-top: solid 8px #ffffff;
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    transform: rotate(0deg);
    transition: transform 0.25s;
    cursor: pointer;
    transform-origin: center;
}

div.ListFilters button.UXButton {
    width: 30px;
    height: 30px;
    line-height: 100%;
    margin-left: 10px;
    font-size: 20px;
    display: inline;
    vertical-align: middle;
}

div.PropertiesExplorer div.Table {
    display: block;
    overflow-x: hidden;
}

    div.PropertiesExplorer div.Table div.TableRow {
        display: block;
        white-space: nowrap;
    }

        div.PropertiesExplorer div.Table div.TableRow div.TableCell {
            display: inline-block;
            border: none;
            overflow-x: hidden;
        }

            div.PropertiesExplorer div.Table div.TableRow div.TableCell:first-child {
                width: 20%;
                max-width: 400px;
                min-width: 200px;
                border-right: solid 1px #c0c0c0;
            }

div.TableRow > div.PropertiesExplorer {
    border-top: solid 1px #404040;
    border-bottom: solid 1px #404040;
}

div.Widget.Reduced div.TableRow > div.PropertiesExplorer {
    border-top: solid 0px #404040;
    border-bottom: solid 0px #404040;
}

div.Table div.WidgetHeader::after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 0px;
    height: 0px;
    left: auto;
    right: 15px;
    top: 10px;
    border-top: solid 6px #404040;
    border-left: solid 6px transparent;
    border-right: solid 6px transparent;
    transform: rotate(0deg);
    transition: transform 0.25s;
    cursor: pointer;
}

div.TableRow.Widget > div.WidgetHeader {
    border: none;
}

div.TableRow.Widget.Reduced > div.TableRow.WidgetContent {
    display: none !important;
}

div.Translatable {
    position: relative;
}

    div.Translatable i {
        float: right;
        margin: 12px 0 0 0;
        background-color: #808080;
        width: 24px;
        height: 24px;
        text-align: center;
        line-height: 22px;
        border-radius: 12px;
        font-size: 12px;
        color: #e0e0e0;
    }

i + input,
i + textarea,
i + ul {
    width: calc(100% - 30px) !important;
    margin-right: 30px !important;
    resize: none;
    display: block;
    margin-bottom: 20px !important;
}

i.butTranslate {
    position: absolute;
    top: -24px;
    right: 50px;
    background-color: #40a080;
    font-size: 0;
    background-image: url(/cwt/ux/img/translations.png);
    background-size: contain;
    cursor: pointer;
}

i.butDeepL {
    position: absolute;
    top: -24px;
    right: 80px;
    background-color: Transparent;
    font-size: 0;
    background-image: url(/cwt/ux/img/deepllogo.svg);
    background-size: 70px;
    cursor: pointer;
}

div.ContextSelector {
    width: 100%;
    /*
    height: 64px;
    background-color: #f08000;
 */
}

    div.ContextSelector select {
        font-size: 16px;
        margin-right: 20px;
        padding: 5px 10px;
        border-radius: 18px;
        color: #ffffff;
        background-color: #606060;
        border: solid 2px rgba(255, 255, 255, 0.2);
        position: relative;
    }

    div.ContextSelector span.Symbols {
        margin-left: 0px;
        cursor: pointer;
        opacity: 1;
        color: #808080;
    }

a.ButRemove {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #808080;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
    right: -40px;
    position: absolute;
    top: 0;
    cursor: pointer;
}

a.ButDownload {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #808080;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    line-height: 30px;
    right: -40px;
    position: absolute;
    top: 35px;
    cursor: pointer;
}

div.Welcome {
    width: 100%;
    padding-top: 100px;
}

    div.Welcome h1 {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

div.ListTools button.UXButton {
    margin-left: 10px;
}

div.UXSelector ul.Dropdown {
    display: block;
    background-color: #ffffff;
    border: solid 1px #404040;
    list-style-type: none;
    color: #000000;
    width: 100%;
    border-radius: 6px;
    padding: 10px 0;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1;
    margin-top: 5px;
}

    div.UXSelector ul.Dropdown li {
        padding: 5px 10px 5px 45px;
        background-image: url(/cwt/ux/img/Checkbox_off.svg);
        background-repeat: no-repeat;
        background-position: 15px 3px;
        background-size: 20px;
    }

        div.UXSelector ul.Dropdown li.Selected {
            background-image: url(/cwt/ux/img/Checkbox_on.svg);
        }

        div.UXSelector ul.Dropdown li:hover {
            background-color: #e8e8e8;
        }

li.Confirm,
ul.ToolsMenu li.Confirm:hover {
    background-color: #f04000;
}

div.WizardStep {
    margin-bottom: 20px;
    display: none;
}

    div.WizardStep h3 {
        background-color: #404040;
        padding: 5px 16px;
        margin-bottom: 10px;
        border-radius: 16px;
        letter-spacing: 1px;
        font-size: 16px;
        line-height: 24px;
    }

ul.SpreadSheetsList {
    list-style-type: none;
}

    ul.SpreadSheetsList li {
        padding: 5px 10px 5px 45px;
        background-image: url(/cwt/ux/img/Checkbox_off.svg);
        background-repeat: no-repeat;
        background-position: 15px 3px;
        background-size: 20px;
        cursor: pointer;
    }

        ul.SpreadSheetsList li.Selected {
            background-image: url(/cwt/ux/img/Checkbox_on.svg);
        }

li.ColumnMapper {
    list-style-type: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 5px;
}

    li.ColumnMapper span {
        width: calc(30% - 16px);
        margin-left: 16px;
        font-size: 14px;
        line-height: 30px;
    }

    li.ColumnMapper select {
        width: calc(70% - 16px);
        padding: 5px 5px;
        border-radius: 4px;
        background-color: #404040;
        color: #ffffff;
        font-size: 14px;
        border: none;
        margin-right: 16px;
    }

div.WizardStep div.Uploader {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    background-color: #c0c0c0;
    border-radius: 8px;
    cursor: pointer;
    background-image: url(/cwt/ux/img/xls.svg);
    background-blend-mode: luminosity;
}

div.PropertiesExplorer {
    display: table !important;
    width: 100%;
}
