html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    overflow: auto;
}

html {
    color-scheme: light;
    background: #fff;
    color: #333;
}

html[data-theme="dark"] {
    color-scheme: dark;
    background: #000;
    color: #f5f5f7;
}

body {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    line-height: 1;
    -webkit-font-variant-ligatures: none;
    font-variant-ligatures: none;
    text-rendering: optimizeLegibility;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: normal;
    font-style: normal;
    background: #fff;
    color: #333;
}

html[data-theme="dark"] body {
    background: #000;
    color: #f5f5f7;
}

body,
button,
input,
optgroup,
select,
textarea {
    font-family: "Roboto", sans-serif !important;
}

img,
figure {
    user-drag: none;
    -webkit-user-drag: none;
    -ms-user-select: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    max-width: 100%;
}

ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
p,
blockquote,
figure,
form,
fieldset,
input,
legend,
pre,
abbr,
button {
    margin: 0;
    padding: 0;
}

br {
    display: block;
    content: "";
}

.add-blur {
    background: rgba(0, 0, 0, 1);
    /* background: rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(0.25px);
    backdrop-filter: blur(0.25px); */
    border: 1px solid #424245;
}

.unselect {
    user-drag: none;
    -webkit-user-drag: none;
    -ms-user-select: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* -------- */

[contenteditable]:focus {
    outline: 1px solid #333 !important;
    outline-offset: 0px !important;
    box-shadow: none !important;
    border-radius: 3px !important;
}

.main {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.is-fullheight {
    position: relative;
    width: auto;
    height: 100%;
}

.section-full {
    position: relative;
    width: auto;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.app-body {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #f5f5f7;
    border-radius: 0px;
    border-top: 0;
    padding: 0 5px;
}

#dynamicContent {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: auto;
    padding-bottom: 15px;
}

.dynamic-content-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f5f5f7;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    padding: 0 5px;
    transition:
        opacity 200ms ease-in-out,
        visibility 200ms ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.dynamic-content-skeleton.visible {
    opacity: 1;
    visibility: visible;
}

.dynamic-content-skeleton-name {
    margin: 0 auto;
    border-radius: 3px;
    background: #fff;
    margin-top: 30px;
    height: 37px;
    max-width: 1260px;
}

.dynamic-content-skeleton-items {
    margin: 0 auto;
    border-radius: 3px;
    background: #fff;
    margin-top: 15px;
    height: 100%;
    max-height: 200px;
    max-width: 1260px;
}

.dynamic-content-skeleton-name,
.dynamic-content-skeleton-items {
    background: linear-gradient(90deg, #fcfcfc 25%, #f5f5f7 50%, #fcfcfc 75%);
    background-size: 200% 100%;
    animation: loading 2s infinite ease-in-out;
    will-change: background-position;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.dc-contract-table-heading {
    min-height: 50px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 5px 10px;
    font-weight: 500;
    border-bottom: 1px solid #e3e3e3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.table {
    background-color: transparent;
    background: transparent;
}

/*
.dc-contract-table-heading:hover {
    background: #f5f5f7;
}
*/

.highlight-customer-column {
    font-weight: 900 !important;
}

.table td,
.table th {
    vertical-align: middle;
    padding: 7px 10px;
    overflow: hidden;
    border-radius: 3px;
}

.hide-column-text {
    display: none;
}

.table tbody tbody td,
.table tbody tbody tr,
.table tbody tbody th {
    padding: 2px !important;
}

.dc-contract-table .table {
    width: 100%;
}

.has-hide-column-text .dc-contract-table .table {
    table-layout: fixed;
}

.dc-contract-table .table {
    table-layout: fixed;
}

.dc-table-background {
    background: #fff;
}

.dc-table-background th {
    font-weight: 500;
}

.table td,
.table th {
    border-color: #e3e3e3;
}

.dc-contract-items-settings-checkbox {
    display: inline-flex;
    line-height: 1;
    vertical-align: middle;
}

.dc-contract-items-count {
    margin-top: 5px;
    font-weight: 600 !important;
    letter-spacing: normal !important;
}

/* 
.editing .dc-contract-table:hover .column-edit,
.editing .dc-contract-table:hover .dc-product-name {
    text-decoration: underline;
}
*/
[contenteditable]:focus {
    outline: 1px solid #333 !important;
    outline-offset: 0px !important;
    box-shadow: none !important;
    border-radius: 3px !important;
    /* text-decoration: none !important; */
}

/* 
.non-editable {
    text-decoration: none !important;
}
*/
input[type="checkbox"] {
    appearance: none;
    font: initial;
    color: initial;
    width: 12px;
    height: 12px;
    border: 1px solid #1d1d1f;
    border-radius: 3px;
    display: grid;
    place-content: center;
}

input[type="checkbox"]::before {
    content: "";
    width: 6px;
    height: 6px;
    transform: scale(0);
    transition: 100ms transform ease-in-out;
    box-shadow: inset 6px 6px #333;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

/* COPIED OVER */
/* COPIED OVER */
/* COPIED OVER */

.control .button {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0px !important;
    background: #fff;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    border-radius: 0px;
    margin-left: 7px;
    font-weight: 600;
}

.control .button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.control .button:active {
    background: rgba(0, 0, 0, 0.05);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-webkit-autofill::first-line {
    -webkit-animation: autofill 0s forwards;
    animation: autofill 0s forwards;
}

@keyframes autofill {
    100% {
        background: transparent;
        color: inherit;
        font-size: inherit;
    }
}

@-webkit-keyframes autofill {
    100% {
        background: transparent;
        color: inherit;
        font-size: inherit;
    }
}

.control .input::placeholder,
.ui.search .prompt::placeholder {
    color: #86868b;
    opacity: 1;
}

.control .input {
    /* box-shadow: 0 0 0 30px white inset; */
    border: 1px solid #f5f5f7 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #333;
    border-radius: 0px;
    padding: 10px 10px 10px 41px;
    font-weight: 600;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19'><path fill='%23333' d='M13.98 12.57a2 2 0 0 1 1.93.52l2.5 2.5a2 2 0 0 1-2.82 2.82l-2.5-2.5a2 2 0 0 1-.52-1.93l-1.38-1.37a7 7 0 1 1 1.42-1.42l1.37 1.38zm-3.37-2.03a5 5 0 1 0-7.08-7.08 5 5 0 0 0 7.08 7.08z'></path></svg>");
    background-repeat: no-repeat;
    background-position: 14px 11px;
    background-size: 18px 18px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.control [disabled].input {
    -webkit-box-shadow: none;
    box-shadow: none;
    /* background-color: rgba(0, 0, 0, 0.05); */
    background-color: #fff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19'><path fill='%23333' d='M13.98 12.57a2 2 0 0 1 1.93.52l2.5 2.5a2 2 0 0 1-2.82 2.82l-2.5-2.5a2 2 0 0 1-.52-1.93l-1.38-1.37a7 7 0 1 1 1.42-1.42l1.37 1.38zm-3.37-2.03a5 5 0 1 0-7.08-7.08 5 5 0 0 0 7.08 7.08z'></path></svg>");
    background-repeat: no-repeat;
    background-position: 14px 11px;
    background-size: 18px 18px;
    /* box-shadow: 0 0 0 30px white inset; */
    color: #86868b;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.button[disabled] {
    opacity: 1;
}

.button.is-loading:after {
    opacity: 0.3;
}

#downloadButton.is-loading svg,
#uploadButton.is-loading svg {
    display: none;
}

.button.is-loading {
    background: #fff;
}

/* COPIED OVER */
/* COPIED OVER */
/* COPIED OVER */

.dc-contract-table-heading-position {
    display: inline-block;
    color: #333;
    font-size: 11px;
}

.dc-contract-table-heading-buttons {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 300px;
    display: none;
}

.dc-contract-table-heading-buttons button {
    display: inline-block;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #e3e3e3 !important;
    background: #fff;
    transition: none;
    border-radius: 10px;
    padding: 5px 10px;
    margin-left: 8px;
}

.analyzed-content {
    color: #f56900;
    border: 1px solid #f56900;
    border-radius: 50px;
    padding: 5px 10px;
}

.dc-contract-table-heading-position,
.dc-contract-table-heading-buttons button {
    font-weight: 500;
}

.dc-contract-table-heading-buttons button svg {
    width: 14px;
    height: 15px;
    fill: #333;
    margin-bottom: -2px;
}

.dc-contract-table-heading-buttons button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.dc-contract-table-heading-buttons button:active {
    background: rgba(0, 0, 0, 0.05);
}

.dc-contract-table-heading-buttons button.is-loading svg {
    visibility: hidden;
}

.dc-contract-table:first-child .dc-contract-table-heading {
    border-top: 0;
}

/*
.dc-contract-table:nth-child(odd) .table tbody,
.dc-contract-table:nth-child(odd) .dc-contract-table-heading {
    background-color: #fafafa;
}
*/

.dc-contract-table {
    /* border-bottom: 1px solid #e3e3e3; */
    margin-bottom: 15px !important;
    margin-top: 15px !important;
    border-radius: 3px;
    background: #fff;
    padding: 0;
    transition: opacity 0.4s ease-in-out;
}

#dc-contract-table-0 {
    margin-top: 15px !important;
}

.unsupported {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    text-align: center;
    background: #fff;
    z-index: 9999;
    color: #1d1d1f;
    font-weight: 500;
}

.unsupported-wrapper {
    width: 100%;
    max-width: 300px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
}

.unsupported a {
    color: #07c;
}

.unsupported a:hover {
    text-decoration: underline;
}

.unsupported-paragraph {
    margin-top: 10px;
}

.dynamic-content-placeholder {
    width: 100%;
    left: 50%;
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    position: absolute;
    text-align: center;
    max-width: 360px;
}

.dynamic-content-placeholder span {
    display: inline;
    width: 100%;
    font-size: 15px;
    color: #86868b;
    font-weight: 400;
}

/*
.field.is-grouped .control:nth-child(3) {
    display: none;
}
*/
.app-header-inner {
    background: #fff;
}

#app-header .control {
    display: inline-block;
}

#app-header .field.is-grouped {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #e3e3e3;
    font-size: 0;
    padding: 5px 0px;
}

#app-header .control .input {
    min-width: 221px;
    max-width: 221px;
    border: 0 !important;
}

#app-header .control .input,
#app-header .control .button {
    font-size: 15px;
    min-height: 40px;
}

*[contenteditable="true"] {
    outline: none;
}

.dc-contract-table-pair-2 {
    border-top: 1px solid #e3e3e3;
}

#app-header .button[disabled] {
    /* background: rgba(0, 0, 0, 0.05); */
    color: #86868b;
}

.dc-contract-table-heading-buttons button[disabled] {
    background: rgba(0, 0, 0, 0.05);
    color: #86868b;
}

#app-header .button[disabled] svg,
.dc-contract-table-heading-buttons button[disabled] svg {
    fill: #86868b;
}

#app-header .button svg {
    fill: #333;
}

.lastPagesPopup {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
    padding: 15px 20px;
    z-index: 9999;
}

.lastPagesPopup-span {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
}

#closePopup {
    font-weight: 600;
    font-size: 15px;
    margin-top: 20px;
    display: block;
}

.last-saved-entries {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.last-saved-entries-div {
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
    margin-top: 6px;
    margin-bottom: 6px;
}

.last-saved-entries-div:first-child {
    margin-top: 0;
}

.last-saved-entries-div:last-child {
    margin-bottom: 0;
}

.non-editable {
    color: #999 !important;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-device {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
}

#editButton {
    min-width: 165px;
    border-right: 0 !important;
    margin-right: 5px;
}

#uploadButton,
#downloadButton {
    min-width: 201px;
}

.resizer {
    width: 15px;
    height: 15px;
    position: absolute;
    right: -7px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: col-resize;
    z-index: 1;
    display: inline-block;
    display: none;
    visibility: hidden;
}

.resizer svg {
    fill: #86868b;
}

th {
    position: relative;
    /* Ensure the resizer is positioned correctly */
}

tr th:last-child .resizer {
    display: none;
}

#menuButton svg {
    width: 18px;
    height: 18px;
    fill: #333;
}

#menuButton {
    min-width: 48px;
    min-height: 37.5px;
}

.control .menu-button-active {
    background: rgba(0, 0, 0, 0.05);
}

.modal {
    width: 100%;
    height: 100%;
    max-width: 344px;
    max-height: 344px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #e3e3e3;
}

.modal-content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal-menu-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal-menu-header {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #e3e3e3;
    background: #f5f5f7;
}

#menu-button-2 {
    color: #333;
    user-select: none;
    margin: 0 auto;
}

#urlInput[disabled] {
    user-select: none;
    cursor: not-allowed;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19'><path fill='%2386868b' d='M13.98 12.57a2 2 0 0 1 1.93.52l2.5 2.5a2 2 0 0 1-2.82 2.82l-2.5-2.5a2 2 0 0 1-.52-1.93l-1.38-1.37a7 7 0 1 1 1.42-1.42l1.37 1.38zm-3.37-2.03a5 5 0 1 0-7.08-7.08 5 5 0 0 0 7.08 7.08z'></path></svg>");
}

.ui-draggable-dragging .modal-menu-header {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.modal-menu-body {
    padding: 15px;
    overflow: auto;
    height: 100%;
    max-height: calc(344px - 52px);
    background: rgba(255, 255, 255, 1);
}

.dc-contract-name-span {
    padding: 10px;
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.dc-contract-table,
.dc-contract-name-span,
.dc-subheader-inner {
    max-width: 1260px;
    margin: 0 auto;
}

.dc-contract-name {
    /* border-bottom: 1px solid #e3e3e3; */
    border-radius: 3px;
    background: #fff;
    max-width: 1260px;
    margin: 0 auto;
    margin-top: 30px;
}

.dc-contract-items {
    /* border-bottom: 1px solid #e3e3e3; */
    border-radius: 3px;
    background: #fff;
    max-width: 1260px;
    margin: 0 auto;
    margin-top: 15px;
    padding: 10px 0px;
}

.dc-contract-items-inner {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
    color: #333;
}

.dc-contract-items-inner span {
    display: block;
    width: auto;
    text-transform: initial;
    font-weight: 400;
    padding: 3px 10px;
    line-height: 1;
    letter-spacing: -0.01em;
}

.dc-contract-items-heading {
    border-bottom: 1px solid #e3e3e3;
    font-weight: 600 !important;
    padding-bottom: 10px !important;
    padding-top: 0 !important;
    margin-bottom: 8px !important;
    line-height: inherit !important;
    font-size: 13px !important;
    letter-spacing: normal !important;
}

.dc-contract-items-inner span svg {
    width: 4px;
    height: auto;
    margin-right: 4px;
    margin-top: -1px;
    fill: #333;
    vertical-align: middle;
    display: none;
}

.dc-contract-items-settings {
    display: block;
    font-size: 11px;
    color: #333;
    border-top: 1px solid #e3e3e3;
    padding-top: 9px;
    padding-bottom: 2px;
    margin-top: 8px;
    font-weight: 600;
    user-select: none;
    padding-left: 10px;
    padding-right: 10px;
}

#hide-column-text-about {
    vertical-align: middle;
    margin-right: 7px;
    margin-top: -1px;
}

.dc-subheader {
    position: sticky;
    top: 0;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    margin-top: 30px;
    background: rgba(255, 255, 255, 1);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    font-weight: 600;
    font-size: 13px;
    color: #333;
    z-index: 2;
    /* border-bottom: 1px solid #e3e3e3; */
    border-radius: 3px;
}

.dc-subheader-button-hide,
.dc-subheader-button-export {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 3px 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
}

.dc-subheader-inner {
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    padding: 7px 10px;
}

html[data-theme="dark"] .dc-subheader {
    color: #f5f5f7;
    background: rgba(0, 0, 0, 1);
    border-color: #424242;
}

.dc-subheader-button-hide,
.dc-subheader-button-export,
.dc-subheader-button-check,
.dc-subheader-button-wrong {
    display: inline-block;
    cursor: pointer;
    margin-left: 7px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.dc-subheader-button-check,
.dc-subheader-button-wrong {
    cursor: auto;
}

.dc-subheader-button-check {
    margin-left: 0;
}

.dc-subheader-button-hide:hover,
.dc-subheader-button-export:hover {
    color: #707070;
}

.dc-subheader-button-hide:active,
.dc-subheader-button-export:active {
    color: #707070;
}

.modal-menu-header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.menu-button {
    width: auto;
    height: auto;
}

.menu-button-self {
    display: inline-block;
    height: 100%;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    padding: 5px 7px;
    border-radius: 7px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    margin-right: 10px;
}

.menu-button:last-child .menu-button-self {
    margin-right: 0px;
}

.modal-menu-active.menu-button-self {
    color: #86868b;
}

.menu-button:hover .menu-button-self {
    color: #86868b;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.ui.input {
    border: 0;
}

.modal-menu {
    position: relative;
    height: 100%;
}

.ui.input {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: 0 !important;
    padding: 0;
}

.ui.search .prompt {
    border: 1px solid #e3e3e3 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    color: #333;
    border-radius: 10px;
    padding: 9px 10px 9px 37px;
    font-weight: 600;
    font-size: 15px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19'><path fill='%2386868b' d='M13.98 12.57a2 2 0 0 1 1.93.52l2.5 2.5a2 2 0 0 1-2.82 2.82l-2.5-2.5a2 2 0 0 1-.52-1.93l-1.38-1.37a7 7 0 1 1 1.42-1.42l1.37 1.38zm-3.37-2.03a5 5 0 1 0-7.08-7.08 5 5 0 0 0 7.08 7.08z'></path></svg>");
    background-repeat: no-repeat;
    background-position: 12px 10px;
    background-size: 18px 18px;
    width: 100%;
}

.ui.search .prompt ~ .search.icon {
    display: none;
}

.ui.search > .results {
    background: #f5f5f7;
    margin-top: 12px;
    border-radius: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}

.ui.category.search > .results .category .result:hover,
.ui.search > .results .result:hover {
    background: #f5f5f7;
    opacity: 0.7;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.ui.search > .results .result,
.ui.search > .results > .message {
    font-size: 13px;
    padding: 10px 15px;
    color: #333;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.ui.search > .results .result .title,
.ui.search > .results > .message .header {
    margin: 0 auto;
    margin-bottom: 3px;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.ui.search > .results .result .description,
.ui.search > .results > .message .description {
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #666;
}

.ui.search > .results > :last-child {
    border-radius: 10px;
}

.ui.search > .results .result {
    border-color: #e3e3e3;
}

.ui.input {
    min-height: 37.5px;
}

.menu-inner-info {
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 12px;
    color: #86868b;
}

.date-separator {
    color: #86868b;
    margin: 6px 0;
}

.message-autosave {
    display: inline-block;
    visibility: hidden;
    position: fixed;
    top: 95px;
    right: -140px;
    background-color: #e0f8d8;
    color: #39821f;
    padding: 10px;
    border-radius: 7px;
    z-index: 10;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 13px;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    min-height: 37.5px;
}

.autosave-success {
    visibility: visible;
    right: 30px;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.message-autosave svg {
    width: 15px;
    height: 15px;
    vertical-align: top;
    margin-right: 6px;
    fill: #39821f;
}

#themeButton {
    position: relative;
    width: auto;
    height: 100%;
    min-height: 37.5px;
    min-width: 48px !important;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
}

#themeButton:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), color-stop(50.01%, #000));
    background-image: -o-linear-gradient(left, #fff 50%, #000 50.01%);
    background-image: linear-gradient(to right, #fff 50%, #000 50.01%);
    border: 2px solid #333;
    -webkit-transition: -webkit-transform 0s ease-out;
    transition: -webkit-transform 0s ease-out;
    -o-transition: transform 0s ease-out;
    transition: transform 0s ease-out;
    transition:
        transform 0s ease-out,
        -webkit-transform 0s ease-out;
}

#themeButton:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    mix-blend-mode: difference;
}

[data-theme="dark"] #themeButton:before {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    -ms-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
    border-color: #f5f5f7;
}

.scaling:after {
    -webkit-animation: scaleInner 0s ease forwards;
    animation: scaleInner 0s ease forwards;
}

@-webkit-keyframes scaleInner {
    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.8);
        transform: translate(-50%, -50%) scale(1.8);
    }
}

@keyframes scaleInner {
    50% {
        -webkit-transform: translate(-50%, -50%) scale(1.8);
        transform: translate(-50%, -50%) scale(1.8);
    }
}

.menu-inner-3-settings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.checkboxes__item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e3e3e3;
    min-height: 40px;
}

/* CHECKBOX */

.checkbox.style-e {
    display: inline-block;
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox.style-e input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox.style-e input:checked ~ .checkbox__checkmark {
    background-color: #0b9e43;
}

.checkbox.style-e input:checked ~ .checkbox__checkmark:after {
    left: 21px;
}

.checkbox.style-e .checkbox__checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 22px;
    width: 40px;
    background-color: #86868b;
    -webkit-transition: background-color 0.25s ease;
    -o-transition: background-color 0.25s ease;
    transition: background-color 0.25s ease;
    border-radius: 11px;
}

.checkbox.style-e .checkbox__checkmark:after {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 16px;
    height: 16px;
    display: block;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: left 0.25s ease;
    -o-transition: left 0.25s ease;
    transition: left 0.25s ease;
}

.checkbox.style-e .checkbox__body {
    margin-top: 4px;
    color: #333;
    font-size: 13px;
    font-weight: 500;
}

.highlighted-keyword {
    color: #f2425e;
    font-weight: 400;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* CHECKBOX */
.control .button {
    color: #333;
}

#homeButton svg {
    height: 19px;
    width: 19px;
    fill: #333;
}

#homeButton {
    position: relative;
    width: auto;
    height: 100%;
    min-height: 37.5px;
    min-width: 48px !important;
    cursor: pointer;
    text-align: center;
    margin-left: 0 !important;
}

#logoButton {
    /*
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    */
    margin-left: 5px !important;
}

#logoButton svg {
    width: 68px;
    height: auto;
}

#logoButton svg path {
    fill: #333;
}

#editButton svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    margin-top: -1px;
}

#uploadButton svg {
    width: 19px;
    height: 19px;
    margin-right: 8px;
    margin-top: -1px;
}

#downloadButton svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    margin-top: -1px;
}

.ui.selection.dropdown.dc-contract-table-heading-dropdown {
    border: 1px solid #e3e3e3;
    background: #fff;
    border-radius: 10px;
    cursor: default;
    box-shadow: none;
    padding: 2px 27px 2px 10px;
}

.ui.dropdown.dc-contract-table-heading-dropdown .menu .selected.item {
    background: #fff;
}

.ui.selection.dropdown.dc-contract-table-heading-dropdown .menu > .item {
    background: #fff;
    color: #333;
    border-color: #e3e3e3;
    padding: 9px 27px 10px 11px !important;
    font-size: 13px;
}

.ui.selection.dropdown.dc-contract-table-heading-dropdown .menu > .item:hover {
    background: #fafafa !important;
}

.ui.selection.dropdown.dc-contract-table-heading-dropdown .menu > .item:first-child {
    border-top: 0;
}

.ui.fluid.dropdown > .dropdown.icon {
    font-size: 15px;
    opacity: 1;
    padding: 8px;
    color: #333;
    cursor: default;
}

.ui.multiple.search.dropdown > .text {
    margin: 0 auto;
    line-height: 1.1;
    padding: 11px;
    color: #86868b;
    cursor: default;
}

.ui.selection.dropdown .menu {
    border-color: #e3e3e3 !important;
    border-top: 1px solid #e3e3e3 !important;
    box-shadow: none !important;
    border-radius: 0 0 10px 10px;
}

.ui.multiple.dropdown > .label {
    background: #e3e3e3;
    padding: 2px 3px 2px 7px;
    margin: 0;
    line-height: 1.9;
    vertical-align: top;
    color: #333;
    font-size: 12px;
    border-radius: 50px;
    margin-right: 1px;
    border: 1px solid #e3e3e3;
    box-shadow: none;
    cursor: default;
    margin-top: 1px;
    transition: none !important;
}

.delete.icon {
    --bulma-delete-dimensions: 20px;
    color: #333;
    background: #fff;
    margin-left: 5px;
}

.delete:after,
.delete:before {
    background-color: #333;
}

.ui.multiple.search.dropdown > input.search {
    position: static;
    padding: 0;
    max-width: 100%;
    margin: 0;
    line-height: 1;
    color: #333;
    padding: 6px 0px 8px 0px;
}

.ui.default.dropdown:not(.button) > input:focus ~ .text,
.ui.dropdown:not(.button) > input:focus ~ .default.text {
    color: #86868b;
}

.button.is-loading:after {
    left: calc(50% - 7.5px);
    top: calc(50% - 7.5px);
}

.button.is-loading:after,
.control.is-loading:after,
.select.is-loading:after {
    height: 15px;
    width: 15px;
}

.modal-interactive {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 300px;
    border-radius: 12px;
    border: 1px solid #e3e3e3;
    position: fixed;
    top: 101px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    z-index: 3;
}

.modal-interactive-wrapper {
    width: 100%;
    height: 100%;
    padding: 15px;
}

.modal-interactive-content {
    position: relative;
}

.modal-interactive.has-input {
    max-width: 400px;
    max-height: 100px;
}

.modal-interactive-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 11px;
}

.modal-interactive-close {
    background-color: #333;
    position: absolute;
    right: -13px;
    top: -13px;
    border-radius: 50px;
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.modal-interactive-close svg {
    width: 15px;
    height: 15px;
    margin-top: 5px;
    margin-left: 5px;
    fill: #f5f5f7;
}

.modal-interactive.has-input input {
    border: 1px solid #e3e3e3 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #333;
    border-radius: 10px;
    padding: 10px 10px 10px 10px;
    font-weight: 600;
    background-repeat: no-repeat;
    background-position: 14px 11px;
    background-size: 18px 18px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    font-size: 13px;
    height: 40px;
    background-image: none;
}

.control .modal-interactive-proceed {
    border: 1px solid #e3e3e3 !important;
    height: 40px;
    margin-left: 0;
    border-radius: 10px;
}

.modal-interactive-proceed svg {
    height: 24px;
    width: 24px;
}

#ver {
    display: none;
}

.header-group-inner {
    width: 100%;
    display: block;
}

.header-group-element {
    width: auto;
    display: inline-block;
}
.header-group-element-extra {
    text-align: right;
    min-width: 101px;
    margin-right: 5px;
}

.dc-subheader-button-wrong {
    display: none;
}

.dc-contract-items-restriction {
    margin-bottom: 5px;
    font-weight: 600 !important;
}

/* DARK MODE */
/* DARK MODE */
/* DARK MODE */

html[data-theme="dark"] .dc-subheader-button-hide,
html[data-theme="dark"] .dc-subheader-button-export {
    background: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .dc-subheader-button-hide:hover,
html[data-theme="dark"] .dc-subheader-button-export:hover {
    color: #b0b0b1;
}

html[data-theme="dark"] .dc-subheader-button-hide:active,
html[data-theme="dark"] .dc-subheader-button-export:active {
    color: #b0b0b1;
}

html[data-theme="dark"] .dynamic-content-skeleton {
    background: #1d1d1f;
}

html[data-theme="dark"] .dynamic-content-skeleton-name,
html[data-theme="dark"] .dynamic-content-skeleton-items {
    background: linear-gradient(90deg, #111 25%, #1d1d1f 50%, #111 75%);
    background-size: 200% 100%;
}

html[data-theme="dark"] [contenteditable]:focus {
    outline: 1px solid #f5f5f7 !important;
}

html[data-theme="dark"] input[type="checkbox"]::before {
    box-shadow: inset 6px 6px #f5f5f7;
}

html[data-theme="dark"] input[type="checkbox"] {
    border-color: #f5f5f7;
}

html[data-theme="dark"] #logoButton svg path {
    fill: #f5f5f7;
}

html[data-theme="dark"] .dc-contract-name,
html[data-theme="dark"] .dc-contract-items {
    background: #000;
}

html[data-theme="dark"] .checkboxes__item {
    border-color: #424245;
}

html[data-theme="dark"] #menu-button-2 {
    color: #f5f5f7;
}

html[data-theme="dark"] .ui.selection.dropdown.dc-contract-table-heading-dropdown .menu > .item:hover {
    background: #1d1d1f !important;
}

html[data-theme="dark"] .ui.multiple.search.dropdown > input.search {
    color: #f5f5f7;
}

html[data-theme="dark"] .delete:after,
html[data-theme="dark"] .delete:before {
    background-color: #f5f5f7;
}

html[data-theme="dark"] .delete.icon {
    color: #f5f5f7;
    background: #000;
}

html[data-theme="dark"] .ui.multiple.dropdown > .label {
    background: #424245;
    color: #f5f5f7;
    border-color: #424245;
}

html[data-theme="dark"] .ui.selection.dropdown .menu {
    border-color: #424245 !important;
}

html[data-theme="dark"] .ui.fluid.dropdown > .dropdown.icon {
    color: #f5f5f7;
}

html[data-theme="dark"].ui.selection.dropdown.dc-contract-table-heading-dropdown .menu > .item {
    background: #000;
    color: #f5f5f7;
    border-color: #424245;
}

html[data-theme="dark"] .ui.dropdown.dc-contract-table-heading-dropdown .menu .selected.item {
    background: #000;
}

html[data-theme="dark"] .ui.selection.dropdown.dc-contract-table-heading-dropdown {
    border-color: #424245;
    background: #000;
}

html[data-theme="dark"] #homeButton svg {
    fill: #f5f5f7;
}

html[data-theme="dark"] .control .button {
    color: #f5f5f7;
}

html[data-theme="dark"] .app-body {
    background: #1d1d1f;
}

html[data-theme="dark"] .control .button {
    background: #000;
    color: #f5f5f7;
}

html[data-theme="dark"] .control .button:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #f5f5f7;
}

html[data-theme="dark"] .control .button:active {
    background: rgba(255, 255, 255, 0.14);
    color: #f5f5f7;
}

html[data-theme="dark"] .control .input {
    color: #f5f5f7;
    background-color: #000;
    border-color: #1d1d1f !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19'><path fill='%23f5f5f7' d='M13.98 12.57a2 2 0 0 1 1.93.52l2.5 2.5a2 2 0 0 1-2.82 2.82l-2.5-2.5a2 2 0 0 1-.52-1.93l-1.38-1.37a7 7 0 1 1 1.42-1.42l1.37 1.38zm-3.37-2.03a5 5 0 1 0-7.08-7.08 5 5 0 0 0 7.08 7.08z'></path></svg>");
}

html[data-theme="dark"] .control .input::placeholder,
html[data-theme="dark"] .ui.search .prompt::placeholder {
    color: #86868b;
}

html[data-theme="dark"] #app-header .button[disabled] {
    /* background: rgba(255, 255, 255, 0.14); */
}

html[data-theme="dark"] #menuButton svg {
    fill: #f5f5f7;
}

html[data-theme="dark"] .modal-menu-header {
    border-bottom: 1px solid #e3e3e3;
    background: #1d1d1f;
    border-color: #424245;
}

html[data-theme="dark"] .modal {
    border-color: #424245;
}

html[data-theme="dark"] .modal-menu-body {
    background: #000;
}

html[data-theme="dark"] .menu-button-self {
    color: #f5f5f7;
}

html[data-theme="dark"] .modal-menu-active.menu-button-self {
    color: #86868b;
}

html[data-theme="dark"] .ui.search .prompt {
    border-color: #424245 !important;
    color: #f5f5f7;
    background-color: #000;
}

.ui.fluid.search .results {
    height: auto;
}

html[data-theme="dark"] .ui.search > .results {
    background: #1d1d1f;
}

html[data-theme="dark"] .ui.search > .results .result .title,
html[data-theme="dark"] .ui.search > .results > .message .header {
    color: #f5f5f7;
}

.ui.search > .results .result .description,
.ui.search > .results > .message .description {
    color: #86868b;
}

html[data-theme="dark"] .ui.category.search > .results .category .result:hover,
html[data-theme="dark"] .ui.search > .results .result:hover {
    background: #1d1d1f;
}

html[data-theme="dark"] .dc-contract-table-heading {
    background: #000;
    border-color: #424245;
    color: #f5f5f7;
}

html[data-theme="dark"] .table tbody {
    background: transparent;
}

html[data-theme="dark"] .dc-contract-table-pair-1,
html[data-theme="dark"] .dc-contract-table-pair-2 {
    background: transparent;
}

html[data-theme="dark"] .dc-contract-table,
html[data-theme="dark"] .dc-contract-items,
html[data-theme="dark"] .dc-contract-name,
html[data-theme="dark"] .dc-contract-table-pair-2,
html[data-theme="dark"] .dc-contract-items-settings,
html[data-theme="dark"] .table td,
html[data-theme="dark"] .table th {
    border-color: #424245;
}

html[data-theme="dark"] .dc-contract-table {
    background: #000;
}

html[data-theme="dark"] .dc-contract-name-span,
html[data-theme="dark"] .dc-contract-items-inner,
html[data-theme="dark"] .dc-contract-items-settings {
    color: #f5f5f7;
}

html[data-theme="dark"] .checkbox.style-e .checkbox__body {
    color: #f5f5f7;
}

html[data-theme="dark"] .control [disabled].input {
    /* background-color: rgba(255, 255, 255, 0.14); */
    background-color: #000;
    color: #86868b;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19'><path fill='%23f5f5f7' d='M13.98 12.57a2 2 0 0 1 1.93.52l2.5 2.5a2 2 0 0 1-2.82 2.82l-2.5-2.5a2 2 0 0 1-.52-1.93l-1.38-1.37a7 7 0 1 1 1.42-1.42l1.37 1.38zm-3.37-2.03a5 5 0 1 0-7.08-7.08 5 5 0 0 0 7.08 7.08z'></path></svg>");
}

html[data-theme="dark"] .dc-contract-table-heading-buttons button {
    border-color: #424245 !important;
    background: #000;
}

html[data-theme="dark"] .dc-contract-table-heading-buttons button svg {
    fill: #f5f5f7;
}

html[data-theme="dark"] .dc-contract-table-heading-buttons button:hover {
    background: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .dc-contract-table-heading-buttons button:active {
    background: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .dc-contract-table-heading-buttons button[disabled] {
    background: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .dc-contract-table-heading-buttons button[disabled] svg {
    fill: #86868b;
}

html[data-theme="dark"] .dc-contract-table-heading-position {
    color: #f5f5f7;
}

.table,
.table td,
.table th {
    color: #333;
    font-size: 11px;
    letter-spacing: -0.01em;
}

html[data-theme="dark"] .table,
html[data-theme="dark"] .table td,
html[data-theme="dark"] .table th {
    color: #f5f5f7;
}

.copy-format .copy-format-hidden {
    display: none;
}

.copy-format .table,
.copy-format .table td,
.copy-format .table th,
.copy-format .table tr {
    color: #000;
    background: transparent !important;
}

html[data-theme="dark"] .copy-format .table,
html[data-theme="dark"] .copy-format .table td,
html[data-theme="dark"] .copy-format .table th,
html[data-theme="dark"] .copy-format .table tr {
    color: #000;
    background: transparent !important;
}

.copy-format .dc-contract-name-span,
.copy-format .dc-contract-table-heading-position,
.copy-format .dc-contract-table-heading,
.copy-format td,
.copy-format th,
.copy-format tr {
    font-family: "Calibri", sans-serif !important;
    font-size: 12px !important;
    color: #000 !important;
    font-weight: 400 !important;
    text-align: left !important;
}

.copy-format .dc-contract-name-span,
.copy-format .dc-contract-table-heading-position,
.copy-format .dc-table-background th {
    font-weight: bold !important;
    text-align: left !important;
}

.copy-format .dc-contract-table-heading-position {
    text-transform: uppercase !important;
}

.copy-format table,
.copy-format th,
.copy-format td,
.copy-format tr {
    table-layout: auto !important;
    vertical-align: middle !important;
    text-align: left !important;
    border-collapse: collapse !important;
    padding: 0 !important;
}

.copy-format .dc-contract-table-heading {
    padding: 0 !important;
}

.copy-format .dc-contract-table-heading,
.copy-format .dc-contract-name,
.copy-format .dc-contract-table-pair-1,
.copy-format .dc-contract-table-pair-2 {
    background: transparent !important;
    background-color: transparent !important;
}

.copy-format .dc-contract-name-span {
    white-space: pre-wrap;
}

.copy-format .non-editable {
    color: #999 !important;
}

.copy-format .dc-contract-name {
    border: 0 !important;
}

html[data-theme="dark"] .copy-format .dc-contract-name-span {
    color: #000;
}

html[data-theme="dark"] .copy-format.app-body {
    background-color: transparent !important;
    background: transparent !important;
}

.copy-format .highlighted-keyword th {
    color: #ff243c !important;
}

html[data-theme="dark"] .copy-format .dc-contract-table-heading-position {
    color: #000;
}

html[data-theme="dark"] #app-header .button svg {
    fill: #f5f5f7;
}

html[data-theme="dark"] #app-header .button[disabled] svg {
    fill: #86868b;
}

html[data-theme="dark"] .no-device {
    background: #000;
}

html[data-theme="dark"] #app-header .field.is-grouped {
    border-color: #424245;
}

html[data-theme="dark"] .app-header-inner {
    background: #000;
}

html[data-theme="dark"] .dc-contract-items-inner span svg {
    fill: #f5f5f7;
}

html[data-theme="dark"] .dc-contract-items-heading {
    border-color: #424245;
}

html[data-theme="dark"] .dc-table-background {
    background: #000;
}

html[data-theme="dark"] .control .menu-button-active {
    background: rgba(255, 255, 255, 0.14);
}

/* DARK MODE */
/* DARK MODE */
/* DARK MODE */

.header-group {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

#app-header .header-group .button {
    margin-left: 0px;
    border-radius: 5px;
    line-height: 1;
}

@media only screen and (max-width: 1179px) {

    #app-header .field.is-grouped {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
    }

    #downloadButton {
        margin-left: 0;
    }

    #editButton,
    #uploadButton,
    #downloadButton {
        font-size: 0 !important;
        min-width: 48px !important;
        max-width: 48px !important;
        min-height: 37.5px;
    }

    #editButton svg,
    #uploadButton svg,
    #downloadButton svg {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.dynamic-content-placeholder-model {
    height: 50px;
    width: 100px;
    border: 3px solid #86868b;
    border-radius: 10px;
    -webkit-animation: rotate 2s ease-in-out 1 alternate;
    animation: rotate 2s ease-in-out 1 alternate;
    margin: 0 auto;
}

.dynamic-content-placeholder-message {
    color: #86868b;
    font-size: 15px;
    margin-top: 40px;
    font-weight: 400;
    /* display: none; */
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    50% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    50% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
