/* CSS reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* common elements styling */
button {
  font-size: inherit;
}
button:focus {
  outline: 0;
}
textarea:focus {
  border-color: var(--highlight-color);
  outline: 0;
}

html, body {
  width: 100%;
  height: 100%;
  color:var(--gray-0);
  background-color:var(--gray-e);
}
#desktop {
  position: relative;
  width: 100%;
  height: 100%;
}
#desktop.desktop-withConsole {
  height: calc(100% - 240px);
}

.mConsole {
  position: absolute;
  box-sizing: border-box;
  z-index: 999999;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 240px;
  color: #000;
  background-color: #ffee;
  font-family: monospace;
  font-size: 10px;
  padding: 2px;
}
.mConsole p {
  margin: 2px 0;
}
.mConsole-hidden {
  display: none;
}
.mConsole_logs {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  background-color: #ffee;
  overflow-y: scroll;
}
.mConsole_DQ {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  background-color: #fede;
  overflow-y: scroll;
}
.mConsole-hideLogs {
  width: 25%;
  left: auto;
}
.mConsole-hideLogs .mConsole_logs {
  display: none;
}
.mConsole-hideDQ .mConsole_DQ {
  display: none;
}
.mConsole:not(.mConsole-hideDQ) .mConsole_logs {
  width: 75%;
}
.mConsole:not(.mConsole-hideLogs) .mConsole_DQ {
  width: 25%;
}

.mScreen_overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.mScreen_overlay-passive {
  opacity: 0;
}
.mScreen_overlay-fadeout {
  background-color: var(--overlay-fadeout);
}
.mScreen_layer {
  position: absolute;
  text-align: left;
  white-space: normal;
}


.mGroup {
  margin-top: 16px;
}
.mGroup:first-child {
  margin-top: 0px;
}
.mGroup_title {
  padding: 8px 16px;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gray);
  position: relative;
}
.mGroup-canBeMinimized .mGroup_title:before {
  content: "\f0d8";
  padding: 0 4px;
  font: normal normal normal 14px/1 FontAwesome;
}
.mGroup-canBeMinimized.mGroup-isMinimized .mGroup_title:before {
  content: "\f0d7";
}
.mGroup-isMinimized *:not(.mGroup_title) {
  display: none;
}

/* Button */
.mButton {
  border: 1px solid var(--gray-a);
  background-color: var(--gray-e);
  color: var(--gray-2);
  padding: 6px 8px;
  line-height: 1.2;
  margin: 4px;
  font-weight: normal;
  font-size: var(--font-size);
  cursor: pointer;
}
.mButton:disabled {
  color: var(--gray-b);
}
.mButton-default {
  background-color: var(--gray-f);
}
.mButton-hidden {
  display: none;
}
.mButton_menu {
  display: inline-block;
  margin: -5px -4px -5px 4px;
  padding: 6px 4px;
  border-left: 1px solid var(--gray-8);
}
.mButton-withStatus {
  padding-left: 16px;
  position: relative;
  margin-right: 0;
}
.mButton-withStatus:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 8px;
  width: 4px;
  height: 10px;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
  background-color: var(--passiveLED);
}
.mButton-withStatusOn:before {
  background-color: var(--activeLED);
}



/* Button bar */
.mButtonBar {
  width: 100%;
  padding: 8px 8px;
  display: flex;
}
.mButtonBar .mButton {
  flex: 1 1 auto;
  margin: 0 8px;
}

/* Checkbox */
.mCheckbox {
  box-sizing: border-box;
  padding: 12px 16px 12px 50px;
  position: relative;
  cursor: pointer;
}
.mCheckbox_checkbox {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 28px;
  height: 28px;
  border: 2px solid var(--dark-gray);
  border-radius: 3px;
}
.mCheckbox_checkbox:after {
  opacity: 0;
  -webkit-transition: all 0.30s ease;
  transition: all 0.30s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background-color: var(--highlight-color);
}
.mCheckbox-on .mCheckbox_checkbox:after {
  opacity: 1;
}
.mCheckbox-disabled {
  color: var(--dark-gray);
}
.mCheckbox-disabled .mCheckbox_checkbox {
  border-color: var(--gray);
  background-color: var(--light-gray);
}

/* Select */
.mSelect, .mDropdown {
  background-color: var(--black);
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPScjYmJiJyBoZWlnaHQ9JzI0JyB2aWV3Qm94PScwIDAgMjQgMjQnIHdpZHRoPScyNCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNNyAxMGw1IDUgNS01eicvPjxwYXRoIGQ9J00wIDBoMjR2MjRIMHonIGZpbGw9J25vbmUnLz48L3N2Zz4=");
  /* <svg fill='#bbb' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg> */
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 1px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
  box-sizing: border-box;
  font-size: 15px;
  padding: 4px 8px 4px 8px;
  border: 1px solid var(--dark-gray);
  border-radius: 3px;
  margin: 4px 0;
  box-shadow: none;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mDropdown {
  padding-right: 20px;
}
.mSelect:disabled, .mDropdown-disabled {
  border-color: var(--dark-gray);
  color: var(--dark-gray);
  cursor: default;
}
.mSelect:focus, .mDropdown:focus {
  border-color: var(--highlight-color);
  outline: 0px none;
}
.mDropdown_item-selected {
  background-color: var(--highlight-color);
}
.mDropdown_menu {
  overflow-y: auto;
}
/* Radio buttons */
.mRadioButtons {
}
.mRadioButtons_item {
  position: relative;
  display: block;
  margin: 0;
  padding: 12px 16px 12px 50px;
  color: var(--white);
  width: 100%;
  font-size: 15px;
  cursor: pointer;
}
.mRadioButtons_checkbox {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 28px;
  height: 28px;
  border: 2px solid var(--dark-gray);
  border-radius: 50%;
}
.mRadioButtons-disabled .mRadioButtons_item {
  color: var(--gray);
}
.mRadioButtons-disabled .mRadioButtons_checkbox {
  background-color: var(--light-gray);
}

.mRadioButtons_checkbox:after {
  opacity: 0;
  -webkit-transition: all 0.30s ease;
  transition: all 0.30s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background-color: var(--highlight-color);
  border-radius: 50%;
}
.mRadioButtons_item-on .mRadioButtons_checkbox:after {
  opacity: 1;
}
.mRadioButtons_item:not(.mRadioButtons_item-on) .mRadioButtons_itemContent {
  pointer-events: none;
}

/* Radio row */
.mRadioRow {
  display: flex;
  background-color: var(--black);
  border: 1px solid var(--dark-gray);
  border-radius: 3px;
  font-size: 15px;
}
.mRadioRow_item {
  flex: 1 1 0;
  padding: 8px 2px;
  color: var(--light-gray);
  cursor: pointer;
  border-left: 1px solid var(--dark-gray);
  text-align: center;
}
.mRadioRow-disabled .mRadioRow_item {
  color: var(--gray);
}
.mRadioRow_item:first-child {
  border-left: none;
}
.mRadioRow_checkbox {
  display: none;
}
.mRadioRow_item-on {
  background-color: var(--highlight-color);
  color: var(--highlight-oposite-color);
}
.mRadioRow-disabled .mRadioRow_item-on {
  background-color: var(--black);
  color: var(--gray);
}



/* submenu  */
.mSubmenu {
  line-height: 1;
  display: block;
  margin: 0;
  padding: 12px 16px 11px;
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  font-size: 15px;
  cursor: pointer;
}
.mSubmenu::after {
  display: inline-block;
  position: absolute;
  right: 16px;
  padding-top: 2px;
  font: normal normal normal 14px/1 LineAwesome;
  content: "\f112";
  color: var(--light-gray);
}
.mSubmenu-highlighted {
  background-color: var(--secondary-color);
}
.mSubmenu-warn {
  background-color: var(--warn-color);
}

/* slider */
.mSlider {
  position: relative;
  cursor: pointer;
}

.mSlider_bar {
  position: absolute;
  margin: 0.4em;
  width: calc(100% - 0.8em);
  height: 0.2em;
  background-color: var(--light-gray);
  pointer-events: none;
}
.mSlider_thumb {
  position: absolute;
  left: 0%;
  top: 0.1em;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background-color: var(--light-gray);
}
.mSlider_thumb-hidden {
  opacity: 0;
}

/* bubble */
.mBubble {
  position: absolute;
  -webkit-transition: 0.3s -webkit-transform, 0.3s opacity;
  transition: 0.3s transform, 0.3s opacity;
  font-size: 15px;
}
.mBubble-passive {
  opacity: 0;
}
.mBubble-passive.mBubble-left {
  -webkit-transform: translate(20px, 0);
  transform: translate(20px, 0);
}
.mBubble-passive.mBubble-top {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
}
.mBubble-passive.mBubble-bottom {
  -webkit-transform: translate(0, -20px);
  transform: translate(0, -20px);
}
.mBubble_arrow {
  position: absolute;
}
.mBubble-left .mBubble_arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent var(--highlight-color) transparent transparent;
}
.mBubble-top .mBubble_arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent var(--highlight-color) transparent;
}
.mBubble-bottom .mBubble_arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: var(--highlight-color) transparent transparent transparent;
}
.mBubble_content {
  position: absolute;
  background-color: var(--highlight-color);
  color: var(--highlight-oposite-color);
  border-radius:3px;
  padding: 8px 20px 8px 8px;
  overflow: hidden;
  line-height: 140%;
}
.mBubble_content:after {
  position: absolute;
  top: 8px;
  right: 6px;
  width: 16px;
  height: 16px;
  font: normal normal normal 14px/1 LineAwesome;
  content: "\f342";
  text-align: center;
  cursor: pointer;
}

/* dots */
.mDots {
  text-align: center;
  margin: 4px 16px;
}

.mDots_dot {
  display: inline-block;
  margin: 0 4px;
  width: 8px;
  height: 8px;
  background-color: var(--gray);
  border-radius: 50%;
  cursor: pointer;
}
.mDots_dot-selected {
  background-color: var(--white);
}


/* file box */
.mFile {
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--gray);
  position: relative;
  overflow: hidden;
}
.mFile:before {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  content: "";
}
.mFile_content {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  box-sizing: border-box;
  padding: 4px;
  overflow-wrap: break-word;
}
.mFile_content-image {
  height: 100%;
}
.mFile_content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mFile_buttonDelete {
  position: absolute;
  box-sizing: border-box;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background-color: red;
  color: white;
  cursor: pointer;
}
.mFile_buttonDelete-hidden {
  display: none;
}
.mFile_progressBar {
  width: 50%;
  height: 4px;
  margin: 2px auto 0;
}
.mFile_progressBar div {
  height: 100%;
  background-color: var(--highlight-color);
  transition: 0.5s width;
}

/* mFloatingMenu */
.mFloatingMenu {
}
.mFloatingMenu_item {
  width: 100%;
  position: relative;
}


/* mDialog */
.mDialog {
  position: absolute;
  background-color: var(--gray-d);
  border: 1px solid var(--gray-8);
  color: var(--gray-0);
  max-width: calc(100% - 4px) !important;
  max-height: calc(100% - 4px) !important;
}
.mDialog-fullscreen {
  width: calc(100% - 64px);
  height: calc(100% - 64px);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.mDialog-verticalAlign {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.mDialog_verticalAligner {
  display: inline-block;
  vertical-align: middle;
  width: 0px;
  height: 100%;
  background-color: #0000;
}
.mDialog_header {
  background-color: var(--gray-8);
  color: var(--gray-f);
  padding: 6px 8px;
  font-weight: bold;
}
.mDialog_headerClosingButton {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 2px 8px 2px;
}
.mDialog_content {
  box-sizing: border-box;
  padding: 8px;
  overflow-y: auto;
}
.mDialog-fullscreen .mDialog_form {
  height: calc(100% - 112px);
}
.mDialog-fullscreen .mDialog_content {
  height: 100%;
  overflow-y: hidden;
}
.mDialog_buttons {
  text-align: center;
  padding: 8px 0;
  background-color: var(--gray-d);
}
.mDialog_fakeButtonsInContentArea {
  padding: 8px 0;
  margin: 0 -8px;
  width: calc(100% + 16px);
  opacity: 0;
}
.mDialog_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mColor {
  width: 1.2em !important;
  height: 1.2em;
  padding: 0;
  margin-top: 1px;
}
.mColor:disabled {
  opacity: 0.2;
  cursor: default;
}

.mElementsWithLabels_row {
  position: relative;
}
.mElementsWithLabels_row-hidden {
  display: none;
}
.mElementsWithLabels_label {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  padding-top: 0.5em;
  padding-right: 4px;
  font-size: var(--font-size);
  overflow-wrap: break-word;
}
.mElementsWithLabels_label b {
  color: var(--warning);
  vertical-align: top;
  font-size: 80%;
}
.mElementsWithLabels_element {
  display: block;
  margin-left: 0px;
  margin-right: 0px;
}
.mElementsWithLabels_element-withLabel {
  display: inline-block;
  vertical-align: top;
}
.mElementsWithLabels-column {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  vertical-align: top;
  border-left: 1px solid var(--gray-c);
  padding: 0 4px;
}
.mElementsWithLabels-column:first-child {
  border-left: 0px none;
  padding-left: 0;
}
.mElementsWithLabels-column:last-child {
  padding-right: 0;
}
.mElementsWithLabels-column80 {
  width: 80%;
}
.mElementsWithLabels-column75 {
  width: 75%;
}
.mElementsWithLabels-column70 {
  width: 70%;
}
.mElementsWithLabels-column66 {
  width: 66.666%;
}
.mElementsWithLabels-column60 {
  width: 60%;
}
.mElementsWithLabels-column50 {
  width: 50%;
}
.mElementsWithLabels-column40 {
  width: 40%;
}
.mElementsWithLabels-column35 {
  width: 35%;
}
.mElementsWithLabels-column33 {
  width: 33.333%;
}
.mElementsWithLabels-column30 {
  width: 30%;
}
.mElementsWithLabels-column25 {
  width: 25%;
}
.mElementsWithLabels-column20 {
  width: 20%;
}
.mElementsWithLabels-columnHidden {
  display: none;
}
@media screen and (max-width: 600px) {
  .mElementsWithLabels-column {
    display: block;
    width: 100% !important;
    padding: 4px 0;
    border-left: 0 none;
    border-top: 1px solid var(--gray-c);
    margin-top: 4px;
  }
  .mElementsWithLabels-column:first-child {
    border-top: 0px none;
    padding-top: 0;
  }
}
.mInput[type="number"] {
  padding-right: 0;
}
.mInput_value {
  width: calc(100% - 1em);
  text-align: right;
}
.mInput_unit {
  display: inline-block;
  text-align: right;
  width: 1em;
}
.mInputWithMenu {
  display: inline-block;
  border: 1px solid var(--gray-a);
  box-sizing: border-box;
  background-color: var(--gray-f);
}
.mInputWithMenu-focused {
  border-color: var(--highlight-color);
}
.mInputWithMenu .mInput {
  display: inline-block;
  vertical-align: top;
  background-color: transparent;
  width: calc(100% - 2em);
  border: 0 none;
  margin: 0;
}
.mInputWithMenu .mInput:hover {
  border: 0px none;
}
.mInputWithMenu .mButton, .mInputWithMenu span {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 2px 0;
  background-color: transparent;
  width: 2em;
  border: 0 none;
}

.mInputWithNumberControl {
  display: inline-block;
  box-sizing: border-box;
  white-space: nowrap;
}
.mInputWithNumberControl_input {
  width: calc(100% - 4em);
  text-align: right;
  margin: 0;
  border: 0 none;
}
.mInputWithNumberControl_button {
  width: 2em;
  margin: 0;
}



.mFloatingPanel-mInputAutoComplete {
  box-sizing: border-box;
  background-color: var(--gray-f);
  border: 1px solid var(--gray-a);
  overflow-y: scroll;
}
.mInputAutoComplete_item {
  box-sizing: border-box;
  padding: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mInputAutoComplete_item:hover {
  background-color: var(--primary-color);
  color: var(--primary-color-opposite);
}


.mDropdown {
  border: 1px solid
}


.mFolders_itemsWrapper {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  width: 25%;
  height: 100%;
  overflow-y: scroll;
}
.mFolders_contentsWrapper {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  width: 75%;
}
.mFoldersItem {
  padding: 4px;
}
.mFoldersItem-selected {
  background-color: var(--highlight-color);
}
.mFoldersContent {
  display: none;
}
.mFoldersContent-selected {
  display: block;
}



/* error inputs */
.mInput.mErrorInput {
  box-shadow: inset 0 0 0 1px #d00;
  background-color: #fdd;
}
.mInputWithMenu.mErrorInput {
  border-color: #d00;
  background-color: #fdd;
}
.mRadioButtons.mErrorInput {
  box-shadow: inset 0 0 0 1px #d00;
  background-color: #fdd;
}
.mErrorStatus {
  margin: 0.25em 0 1em;
  font-size: 90%;
}
.mErrorStatus_row-invalid {
  color: #d00;
}
.mErrorStatus-hidden {
  display: none;
}



/* common styling */
.mBlackMilkFrame {
  margin: 8px 0px;
  padding: 8px 0px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.mFloatLeft {
  float: left;
  display: block;
}
.mFloatRight {
  float: right;
  display: block;
}
.mMarginOnTop {
  margin-top: 16px;
}
.mMarginOnTop-small {
  margin-top: 4px;
}
.mMarginOnBottom {
  margin-bottom: 16px;
}
.mMarginOnLeft {
  margin-left: 16px;
}
.mMarginOnRight {
  margin-right: 16px;
}
.mClear {
  clear: both;
}
.mSmaller {
  font-size: 90%;
}
.mAbsoluteBottomRight {
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.mVerticalAlignMiddle {
  display: inline-block;
  vertical-align: middle;
}
.mVerticalAlignMiddle:before {
  content: "";
  width: 1px;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.mBlock {
  display: block;
}
.mCentered {
  text-align: center;
}
.mTextAlignRight {
  text-align: right;
}
.mColumn {
  display: inline-block;
  vertical-align: top;
  padding-left: 16px;
  box-sizing: border-box;
}
.mColumn:first-child {
  padding-left: 0px;
}
.mBorderOnTop {
  margin-top: 4px;
  padding-top: 3px;
  border-top: 1px solid var(--gray-c);
}
.mBorderOnBottom {
  margin-bottom: 4px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gray-c);
}
.mInline {
  display: inline-block;
}
.mInline-50 {
  width: 50%;
}

.mTable {
  position: relative;
  background-color:var(--gray-f);
  overflow: hidden;
}
.mTable:focus {
  outline: none;
}
.mTable_toolbar {
  background-color: var(--gray-e);
  white-space: nowrap;
  min-height: 34px;
}
.mTable_tableWrapper {
  height: calc(100% - 34px - 34px); /* minus toolbar, minus pager */
  min-height: 120px;
  position: relative;
}
.mTable_pager {
  background-color: var(--gray-e);
  text-align: center;
  position: relative;
  min-height: 34px;
}

.mTable_statusBox {
  position: absolute;
  width: 320px;
  max-width: 80%;
  height: 54px;
  max-height: 100%;
  padding: 8px;
  border: 1px solid var(--gray-8);
  background-color: var(--gray-d);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
}
.mTable_statusBox-oneRow {
  height: 1em;
}
.mTable_button {
  border: 1px solid var(--gray-b);
  font-size: var(--font-size);
  border-radius: 0;
  background-color: var(--gray-e);
  color: var(--gray-1);
}

.mTable_tableHeaderWrapper {
  position: relative;
  height: 28px;
}
.mTable_tableHeader {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: table;
  table-layout: fixed;
  font-size: var(--font-size);
  color: var(--gray-4);
  border: 0px none transparent;
  width: 1px;
}
.mTable_tableBodyWrapper {
  height: calc(100% - 27px);
  overflow-x: visible;
  overflow-y: scroll;
  /* scroll-snap-type: y mandatory;
  scroll-padding: 12px; */
}
.mTable_tableBody {
  box-sizing: border-box;
  display: table;
  table-layout: fixed;
  font-size: var(--font-size);
  color: var(--gray-4);
  border: 0px none transparent;
  width: 1px;
}
.mTable-thumbnails .mTable_tableBody,
.mTable-previews .mTable_tableBody {
  display: block;
  line-height: 1;
  font-size: 0;
  width: auto;
}

.mTable_tr {
  scroll-snap-align: start;

  box-sizing: border-box;
  border-bottom: 1px solid var(--gray-e);
  display: table-row;
}
.mTable_tr:nth-child(even) {
  background-color: #ddd4;
}
.mTable-thumbnails .mTable_tr,
.mTable-previews .mTable_tr {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0px;
  font-size: var(--font-size);
  padding: 4px 6px;
  border-color: transparent;
}
.mTable-thumbnails .mTable_tr:nth-child(even),
.mTable-previews .mTable_tr:nth-child(even) {
  background-color:transparent;
}

.mTable-thumbnails .mTable_tr {
  width: 142px;
}
.mTable-previews .mTable_tr {
  width: 180px;
}
.mTable_tr-selected {
  color: var(--gray-f);
  background-color: var(--primary-color) !important;
}
.mTable-rowSorting .mTable_tr {
  position: relative;
}
.mTable_tr-sorted {
  z-index: 1;
  opacity: 0.8;
  cursor: all-scroll;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.5);
  transition: 0.1s transform;
}
.mTable-rowSorting .mTable_tr:not(.mTable_tr-sorted) {
  transition: 0.3s all;
}
.mTable-disable {
  pointer-events: none;
  opacity: 0.2;
}
.mTable-thumbnails .mTable_tableHeaderWrapper,
.mTable-previews .mTable_tableHeaderWrapper {
  display: none;
}
.mTable_th {
  box-sizing: border-box;
  position: relative;
  display: table-cell;
  text-align: left;
  border-top: 0px none;
  border-bottom: 0px none;
  padding: 6px 8px;
  vertical-align: middle;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mTable_th-sorting {
  background-color: var(--gray-d);
}
.mTable_th-filtering {
  background-color: var(--gray-4);
  color: var(--gray-f);
}
.mTable_columnHandle {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 4px;
  border-right: 1px solid var(--gray-e);
  cursor: col-resize;
}
.mTable_columnHandle:hover {
  border-right: 2px solid var(--gray-a);
}
.mTable_columnHandle-fixedWidth {
  cursor: not-allowed;
}
.mTable_columnHandle-fixedWidth:hover {
  border-right: 1px solid var(--gray-e);
}
.mTable-thumbnails colgroup,
.mTable-previews colgroup {
  display: none;
}
.mTable_columnIcons {
  float: right;
  color: var(--gray-c);
  cursor: pointer;
}
.mTable_th:hover .mTable_columnIcons {
  color: var(--gray-8);
}
.mTable_th-sorting .mTable_columnIcons {
  color: var(--gray-8);
}
.mTable_th-filtering .mTable_columnIcons {
  color: var(--gray-f);
}

.mTable_editingStatus {
  position: absolute;
  left: 0px;
  top: 0px;
}

.mTable_editModeStart {
  padding: 6px;
  border: 0;

  margin: 2px;
  border-radius: 3px;
  background-color: transparent;
  font-size: var(--font-size);
  color: var(--gray-4);
  cursor: pointer;
}
.mTable_editModeStart:hover {
  background-color: var(--gray-a);
}

.mTable_editHelp {
  padding: 6px;
}

.mTable_editingStatus-on .mTable_editModeStart {
  display: none;
}
.mTable_editingStatus:not(.mTable_editingStatus-on) .mTable_editHelp {
  display: none;
}

.mTable_filteringStatus {
  position: absolute;
  right: 2px;
  top: 2px;
  padding: 6px;
  border: 1px solid var(--gray-8);
  background-color: var(--gray-e);
}
.mTable_summaryInfo {
  position: absolute;
  right: 2px;
  top: 2px;
  padding: 6px;
}

.mTable_td {
  box-sizing: border-box;
  display: table-cell;
  background-color: transparent;
  padding: 6px 8px;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mTable_td-disabled {
  color: var(--gray-c);
}
.mTable-thumbnails .mTable_td,
.mTable-previews .mTable_td {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2px;
  min-height: 1.5em;
  line-height: 120%;
}
.mTable_tdInput {
  width: 100%;
  margin: -2px 0 !important;
  padding: 0 !important;
  border: 0 none !important;
  line-height: 0;
}
.mTable_tdArea {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 none !important;
  line-height: 0;
  resize: vertical;
}
.mTable_td-sortableByDrag {
  padding: 0 2px;
}
.mTable_sortingHandle {
  border: 1px solid var(--gray-b);
  background-color: var(--gray-d);
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
  font-size: 80%;
  padding: 0.4em 0.2em;
  cursor: all-scroll;
}
/* .mTable_tr-folder .mTable_td {
  font-weight: bold;
} */
.mTable_toolbarButton {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  padding: 6px;
  margin: 2px;
  border: 0 none;
  border-radius: 3px;
  background-color: transparent;
  font-size: var(--font-size);
  color: var(--gray-4);
  cursor: pointer;
}
.mTable_toolbarButton:hover {
  background-color: var(--gray-a);
}
.mTable_toolbarButton-active {
  background-color: var(--gray-4);
  color: var(--gray-f);
}
.mTable_toolbarButton-active:hover {
  background-color: var(--gray-5);
}
.mTable_toolbarButton:disabled {
  background-color: transparent;
  color: var(--gray-a);
}
.mTable_toolbarButton:disabled:hover {
  background-color: transparent;
}
.mTable_toolbarComboWrapper {
  display: inline-block;
  vertical-align: baseline;
  box-sizing: border-box;
  width: auto;
  padding: 0;
  margin: 0 4px;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: transparent;
  font-size: var(--font-size);
  color: var(--gray-4);
}
.mTable_toolbarComboWrapper .mDropdown,  .mTable_toolbarLegend {
  display: inline-block;
  vertical-align: middle;
}
.mTable_toolbarComboWrapper .mInput {
  vertical-align: middle;
  margin: 0;
}
.mTable_toolbarLegend {
  margin-right: 4px;
}
.mTable_toolbarButton-hiddenDownloadCSVButton {
  display: none;
}

.mTable_page {
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  width: auto;
  min-width: 30px;
  padding: 6px;
  margin: 2px;
  border: 1px solid var(--gray-d);
  border-radius: 3px;
  background-color: var(--gray-f);
  font-size: var(--font-size);
  color: var(--gray-4);
}
.mTable_page:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.mTable_page-active {
  background-color: var(--gray-4);
  color: var(--gray-f);
}
.mTable_page-active:hover {
  background-color: var(--gray-5);
}
.mTable_page:disabled {
  background-color: transparent;
  border-color: transparent;
  color: var(--gray-d);
}
.mTable_page:disabled:hover {
  background-color: transparent;
  border-color: transparent;
}

.mTable_timeZone {
  float: right;
  margin: 8px 8px 0 0;
  color: var(--gray-4);
}

.mTable_toolbarRightPart {
  float: right;
  white-space: nowrap;
}
.mTable_quickFilterInputsGroup {
  display: inline-block;
  padding: 2px;
  width: 180px;
}
.mTable_quickFilterInputsGroup-active {
  background-color: var(--gray-a);
  color: var(--gray-f);
}
.mTable_quickFilterInputsGroup i {
  margin: 0 0.35em;
}
.mTable_quickFilterInputsGroup i.fa-times {
  cursor: pointer;
}
.mTable_quickFilterInputsGroup:not(.mTable_quickFilterInputsGroup-active) .mTable_quickFilterCancelButton {
  display: none;
}
.mInput-quickFilter {
  width: calc(100% - 1.8em);
}
.mTable_quickFilterInputsGroup-active .mInput-quickFilter {
  width: calc(100% - 3.6em);
}


.mTable_hoverBox {
  position: absolute;
  width: 300px;
  height: 300px;
  pointer-events: none;
}
.mTable_hoverBox img {
  background-color: var(--gray-f);
  height: 100%;
  object-fit: contain;
  border: 1px solid black;
}

.tCookieManager_mainDialog {
  width: 520px;
}
.tCookieManager_mainDialog p {
  font-size: 13px;
  line-height: 120%;
  margin: 2px 0 8px;
  width: auto;
}
.tCookieManager_description {
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.tCookieManager_service {
  margin-top: 4px;
  border-top: 1px dotted #000;
  padding: 8px 0;
}
.tCookieManager_service:first-child {
  border-top: none;
}
.tCookieManager_serviceTitle {
  font-weight: bold;
}
.tCookieManager_serviceDescription {
}
.tCookieManager_serviceOptions {
}
.tCookieManager_footer {
  margin: 4px 0;
  padding: 4px 0;
}
.tCookieManager_moreInfo {
  text-align: right;
}
.tCookieManager_moreInfo a {
  text-decoration: none;
  border-bottom: 1px dotted #000;
}
.mFloatingPanel-serviceOption p {
  font-size: 13px;
  line-height: 120%;
  margin: 4px 0;
}
.tCookieManager_serviceOption {
  padding: 8px;
}
.tCookieManager_serviceOptionTitle {
  font-weight: bold;
}
.tCookieManager_serviceDescription {
}

@font-face {
  font-family: 'NotoSans';
  src: url('NotoSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSans';
  src: url('NotoSans-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSans';
  src: url('NotoSans-Light.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}


:root{
  --font-size: 13px;
  --font-size-big: 16px;
  --font-size-small: 11px;

  --def-line-height: 130%;

  --highlight-color: #8cc;
  --highlight-color-opposite: #fff;
  --primary-color: #0bb;
  --primary-color-opposite: #fff;
  --secondary-color: #fc5;
  --secondary-color-opposite: #000;
  --lines-color: rgba(128,128,128,0.25);

  --overlay-fadeout: rgba(255, 255, 255, 0.8);

  --selecting-color: #0af;
  --group-color: #a0f;
  --variableObject-color: #f0a;
  --activeLED: #0dc;
  --warningLED: #fa0;
  --passiveLED: #aaa;
  --activeUndercolor: #ffc;

  --dropFileActiveColor: #8cc8;

  --warning: #a00;

  --gray-0: #000;
  --gray-1: #111;
  --gray-2: #222;
  --gray-3: #333;
  --gray-4: #444;
  --gray-5: #555;
  --gray-6: #666;
  --gray-7: #777;
  --gray-8: #888;
  --gray-9: #999;
  --gray-a: #aaa;
  --gray-b: #bbb;
  --gray-c: #ccc;
  --gray-d: #ddd;
  --gray-e8: #e8e8e8;
  --gray-e: #eee;
  --gray-f8: #f8f8f8;
  --gray-f: #fff;

  --gray-0-50: #0008;
  --gray-0-25: #0004;
  --gray-a-50: #aaa8;
  --gray-f-50: #fff8;
}

#desktop.darkTheme {
  --gray-0: #fff;
  --gray-1: #eee;
  --gray-2: #ddd;
  --gray-3: #ccc;
  --gray-4: #bbb;
  --gray-5: #aaa;
  --gray-6: #999;
  --gray-7: #888;
  --gray-8: #777;
  --gray-9: #666;
  --gray-a: #555;
  --gray-b: #444;
  --gray-c: #333;
  --gray-d: #222;
  --gray-e8: #181818;
  --gray-e: #111;
  --gray-f8: #080808;
  --gray-f: #000;

  --gray-0-50: #fff8;
  --gray-a-50: #4448;
  --gray-f-50: #0008;
}

#desktop.fotbalTheme {
  --gray-0: #fefcf5;
  --gray-1: #fcfaeb;
  --gray-2: #f9f7e1;
  --gray-3: #f4f2d7;
  --gray-4: #eeebcd;
  --gray-5: #e7e4c3;
  --gray-6: #e0ddba;
  --gray-7: #d8d6b0;
  --gray-8: #d0cea6;
  --gray-9: #c7c79c;
  --gray-a: #bfc093;
  --gray-b: #b7b98a;
  --gray-c: #afb280;
  --gray-d: #a7ab76;
  --gray-e8: #a0a871;
  --gray-e: #9fa46c;
  --gray-f8: #979d63;
  --gray-f: #90965a;

  --gray-0-50: #0008;
  --gray-a-50: #bfc09388;
  --gray-f-50: #fff8;
}

#desktop.mokaTheme {
  --gray-0: #2a1b0d;
  --gray-1: #3a2615;
  --gray-2: #4a301d;
  --gray-3: #5a3a25;
  --gray-4: #6a452e;
  --gray-5: #7a5037;
  --gray-6: #8a5b41;
  --gray-7: #9a674c;
  --gray-8: #aa7357;
  --gray-9: #bb7f63;
  --gray-a: #cc8b6f;
  --gray-b: #d9977c;
  --gray-c: #e5a48a;
  --gray-d: #f0b198;
  --gray-e8: #f4b8a3;
  --gray-e: #f7c0a7;
  --gray-f8: #fcd4c0;
  --gray-f: #ffead8;

  --gray-0-50: #0008;
  --gray-a-50: #cc8b6f88;
  --gray-f-50: #fff8;
}

#desktop.darkNightTheme {
  --gray-0: #ede8ff;
  --gray-1: #d9d3ff;
  --gray-2: #c5bfff;
  --gray-3: #b0aaf0;
  --gray-4: #9b95e0;
  --gray-5: #877fcf;
  --gray-6: #736abf;
  --gray-7: #6055af;
  --gray-8: #4e4699;
  --gray-9: #3c387d;
  --gray-a: #2b2b66;
  --gray-b: #1f1f50;
  --gray-c: #16163d;
  --gray-d: #0e0e2c;
  --gray-e8: #0b0b23;
  --gray-e: #08081c;
  --gray-f8: #07071b;
  --gray-f: #03030f;  /* Nejtmavší noc */

  --gray-0-50: #fff8;
  --gray-a-50: #2b2b6688;
  --gray-f-50: #0008;
}


body {
  line-height:1.2;
  vertical-align: baseline;
  font-family: NotoSans, Helvetica, Arial, sans;
  font-weight: normal;
  font-size: var(--font-size);
  -webkit-text-size-adjust: none;
  -webkit-transform-style:flat;
  -webkit-backface-visibility: hidden;
  -webkit-user-select: none;
  user-select: none;
  overflow-x: hidden;
}

p {
  margin: 2px 0;
}

::-webkit-scrollbar {
  background:transparent;
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track-piece {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
   border-radius: 3px;
   background-color:var(--gray-a);
}
::-webkit-scrollbar-thumb:hover {
   background-color:var(--primary-color);
}
::-webkit-scrollbar-corner {
  background-color:transparent;
}

#desktop {
  box-sizing: border-box;
  border-top: 4px solid var(--primary-color);
}


@font-face {
  font-family: 'FontAwesome';
  src: url('fontawesome-webfont.ttf?v=4.7.0') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
.fa-red {
  color: #d00;
}
.fa-green {
  color: #0d0;
}
.fa-faded {
  opacity:0.2;
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-times:before {
  content: "\f00d";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-font:before {
  content: "\f031";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-picture-o:before {
  content: "\f03e";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-film:before {
  content: "\f008";
}
.fa-music:before {
  content: "\f001";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-mobile:before {
  content: "\f10b";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-history:before {
  content: "\f1da";
}
.fa-undo:before {
  content: "\f0e2";
}
.fa-repeat:before {
  content: "\f01e";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-files-o:before {
  content: "\f0c5";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-question:before {
  content: "\f128";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-scissors:before {
  content: "\f0c4";
}
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-sort:before {
  content: "\f0dc";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-lock:before {
  content: "\f023";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-film:before {
  content: "\f008";
}
.fa-expand:before {
  content: "\f065";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-users:before {
  content: "\f0c0";
}
.fa-user:before {
  content: "\f007";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-question:before {
  content: "\f128";
}
.fa-address-card:before {
  content: "\f2bb";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-phone:before {
  content: "\f095";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-university:before {
  content: "\f19c";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-ticket-alt:before {
  content: "\f3ff";
}
.fa-warning:before {
  content: "\f071";
}
.fa-plus:before {
  content: "\f067";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus:before {
  content: "\f068";
}
.fa-check:before {
  content: "\f00c";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-edit:before {
  content: "\f044";
}
.fa-upload:before {
  content: "\f093";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-list:before {
  content: "\f03a";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-times:before {
  content: "\f00d";
}
.fa-question:before {
  content: "\f128";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-home:before {
  content: "\f015";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-cog:before {
  content: "\f013";
}
.fa-cogs:before {
  content: "\f085";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-apple:before {
  content: "\f179";
}
.fa-android:before {
  content: "\f17b";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-bar-chart:before {
  content: "\f080";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-archive:before {
  content: "\f187";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-chain-broken:before {
  content: "\f127";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-download:before {
  content: "\f019";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-search:before {
  content: "\f002";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-usd:before {
  content: "\f155";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-flag:before {
  content: "\f024";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-code:before {
  content: "\f121";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-book:before {
  content: "\f02d";
}
.fa-link:before {
  content: "\f0c1";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-outdent:before {
  content: "\f03b";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-circle:before {
  content: "\f111";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-gift:before {
  content: "\f06b";
}

/* m redefines */
.mElementsWithLabels-column {
  border-left: 1px solid var(--gray-d);
  padding: 0 8px;
}

.mButton {
  font-family: NotoSans, Helvetica, Arial, sans;
}
.mButton-inDialog {
  border: 1px solid var(--gray-d);
  background-color: var(--gray-f);
  border-radius: 3px;
}
.mButton-inDialog:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.mButton-default {
  border: 1px solid var(--gray-8);
  background-color: var(--gray-4);
  color: var(--gray-f);
}
.mButton-default:hover {
  background-color: var(--gray-5);
}

.mDialog p {
  margin: 4px 0;
}
.mInputWithMenu .mButton {
  padding: 6px 5px;
  border-radius: 0;
  border: 0px none;
}
.mScreen_overlay-fadeout {
  background-color: var(--gray-a-50);
  backdrop-filter: saturate(20%);
}

.mDialog {
  box-shadow: 4px 4px 12px var(--gray-0-25);
  border-color: var(--primary-color);
  border-radius: 3px;
  background-color: var(--gray-e);
}
.darkTheme .mDialog {
  box-shadow: 2px 2px 8px rgb(0, 0, 0, 0.5);
}

.mDialog_overlay {
  background-color: #fff8;
}
.mDialog_overlay:after {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "\f110";
  color: var(--gray-8);
  font: normal normal normal 20px/1 FontAwesome;
  -webkit-animation: fa-spin 2s infinite steps(8);
  animation: fa-spin 2s infinite steps(8);
}

.mDialog_header {
  font-weight: bold;
  font-size: var(--font-size-big);
  color: var(--primary-color-opposite);
  background-color: var(--primary-color);
}
.mDialog_content {
  font-size: var(--font-size);
}
.mDialog_content b {
  font-weight: bold;
}
.tDialog_color {
  position: relative;
  width: 22px !important;
  height: 22px;
  border: 1px solid var(--gray-a);
  cursor: pointer;
  margin: 2px;
}
.tDialog_color:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg,
    rgba(0,0,0,0),
    rgba(0,0,0,0) 4px,
    rgba(0,0,0,0.1) 4px,
    rgba(0,0,0,0.1) 8px
  );
}
.tDialog_colorSwatch {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}



.mDialog_headerClosingButton {
  background-color: transparent;
  border: 0px none;
  padding: 5px 6px;
  margin: 2px;
  color: var(--primary-color-opposite);
}
.mDialog_headerClosingButton:hover {
  background-color: transparent;
}

.mCheckbox {
  background-color: transparent;
  padding: 0 4px 0 calc(1em + 8px);
}
.mCheckbox_checkbox {
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gray-d);
  border-radius: 0;
  background-color: var(--gray-f);
}
.mCheckbox_checkbox:after {
  background-color: var(--activeLED);
  width: 8px;
  height: 8px;
}
.mCheckbox-indeterminate .mCheckbox_checkbox:after {
  opacity: 1;
  /* width: 2px;
  height: 16px;
  transform: rotate(45deg); */
  width: 100%;
  height: 100%;
  /* background: repeating-linear-gradient(-45deg, #ccc, #ccc 2px, #fff 2px, #fff 4px); */
  background-color: var(--gray-c);
}

.mCheckbox-disabled {
  color: var(--gray-8);
}
.mCheckbox-disabled .mCheckbox_checkbox {
  border-color: var(--gray-d);
  background-color: var(--gray-e);
}
.mCheckbox-inline {
  display: inline-block;
}


.mCheckboxes {
  padding: 0px 2px;
  margin: 0 0 2px 0;
  border: 1px solid var(--gray-d);
  background-color: var(--gray-f);
  box-sizing: border-box;
}
.mCheckboxes-disabled {
  background-color: var(--gray-e);
  color: var(--gray-8);
}

.mRadioButtons {
  padding: 0px 2px;
  margin: 0 0 2px 0;
  border: 1px solid var(--gray-d);
  background-color: var(--gray-f);
  box-sizing: border-box;
}
.mRadioButtons_item {
  color: var(--gray-4);
  font-size: var(--font-size);
  padding: 0 4px 0 calc(1em + 8px);
  width: auto;
}
.mRadioButtons-disabled .mRadioButtons_item {
  color: var(--gray-8);
}
.mRadioButtons_checkbox {
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gray-d);
  border-radius: 0;
  background-color: var(--gray-f);
}
.mRadioButtons_checkbox:after {
  background-color: var(--activeLED);
  width: 8px;
  height: 8px;
  border-radius: 0;
}

.mRadioButtons-inDialog {
  background-color: transparent;
  padding: 8px;
}

.mRadioRow {
  border-radius: 3px;
  border: 1px solid var(--gray-d);
  background-color: var(--gray-f);
  overflow: hidden;
  font-size: var(--font-size);
  box-sizing: border-box;
}
.mRadioRow .mRadioRow_item {
  box-sizing: border-box;
  padding: 4px;
  border-left: 1px solid var(--gray-d);
}
.mRadioRow .mRadioRow_item:first-child {
  border-left: 0 none;
}
.mRadioRow .mRadioRow_item:hover {
  background-color: var(--gray-a);
}
.mRadioRow .mRadioRow_item-on {
  background-color: var(--gray-4);
  color: var(--gray-f);
}
.mRadioRow .mRadioRow_item-on:hover {
  background-color: var(--gray-5);
}

.mRadioRow_item-disabled,
.mRadioRow-disabled .mRadioRow_item {
  color: var(--gray-8);
}
.mRadioRow_item-disabled:hover,
.mRadioRow-disabled .mRadioRow_item-disabled:hover {
  background-color: transparent;
  border-color: transparent;
}

.mRadioRow-addContentPositionSelector {
  margin: -8px -8px 8px;
  background-color: var(--gray-b);
  font-size: 16px;
}
.mRadioRow-addContentPositionSelector .mRadioRow_item{
  padding: 2px;
}

.mRadioRow-styleTypes {
  padding: 0 10px 2px 0;
}

.mRadioRow-layoutSelector {
  border: 0 none;
}
.mRadioRow-layoutSelector .mRadioRow_item i {
  font-size: 16px;
}
.mRadioRow_item-withStatus {
  padding: 2px 2px 6px;
  position: relative;
}
.mRadioRow_item-withStatus:after {
  position: absolute;
  content: "";
  bottom: 4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 10px;
  height: 4px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.mRadioRow_item-withStatusOn:after {
  background-color: var(--activeLED);
}
.mRadioRow-layoutSelector .mRadioRow_item-withStatus {
  flex-grow: 0;
  flex-basis: 32px;
}
.mRadioRow-onTapTypeSelector {
  margin: 0;
  padding: 0;
  background-color: var(--gray-b);
}
.mRadioRow-onTapTypeSelector .mRadioRow_item-withStatus {
  padding: 2px 2px 8px;
}

.mRadioRow-frameTypeSelector {
  margin: 0;
  padding: 0;
  background-color: var(--gray-b);
}
.mRadioRow-frameTypeSelector .mRadioRow_item {
  padding: 2px;
}
.mRadioRow.mElementsWithLabels_element-withLabel {
  display: inline-flex;
  padding: 0px;
  margin: 1px 0;
}
.mRadioRow.mElementsWithLabels_element-withLabel .mRadioRow_item {
  padding: 2px;
}

.mInput, .mTextarea {
  box-sizing: border-box;
  border: 1px solid var(--gray-d);
  color: var(--gray-0);
  background-color: var(--gray-f);
  padding: 4px 4px;
  outline: 0px none transparent;
  font-family: NotoSans, Helvetica, Arial, sans;
  font-weight: normal;
  font-size: var(--font-size);
  vertical-align: baseline;
  line-height: 150%;
}
.mInput:focus, .mTextarea:focus, .mInputWithMenu-focused {
  border-color: var(--activeLED);
}
.mInput:disabled, .mTextarea:disabled {
  background-color: var(--gray-e);
  color: var(--gray-8);
}
.mDialog .mInput {
  margin: 0 0 2px 0;
}
.mDialog .mTextarea {
  resize: vertical;
}
.mInput-highlighted {
  background-color: var(--activeUndercolor);
}
.mInput-quickFilter {
  padding: 2px 4px;
}
.mLocalizedElement_row {
  position: relative;
}
.mLocalizedElement_row-hidden {
  display: none;
}
.mLocalizedElement_flag {
  position: absolute;
  left: -24px;
  top: 3px;
}
.mLocalizedElement_row-onlyOne .mLocalizedElement_flag {
  display: none;
}
.mLocalizedElement_row .mInput, .mLocalizedElement_row .mTextarea, .mLocalizedElement_row .mFile {
  width: 100%;
}
.mSelect, .mDropdown {
  border-radius: 0;
  border: 1px solid var(--gray-d);
  color: var(--gray-0);
  background-color: var(--gray-f);
  margin: 0 0 2px 0;
  padding: 4px 20px 4px 4px;
  font-size: var(--font-size);
  line-height: 150%;
  vertical-align: bottom;
  background-position-y: -1px;
}
.mDropdown {
  padding-right: 20px;
}
.mDropdown-inline {
  display: inline-block;
}
.mSelect:disabled, .mDropdown-disabled {
  background-color: var(--gray-e);
  color: var(--gray-8);
}
.mDialog_buttons {
  background-color: var(--gray-e);
}
.mDialog_localizatorSwitch {
  float: right;
  margin: -5px -8px 0 0;
}
.mDialog_localizatorSwitch-hidden {
  display: none;
}
.mDialog .mDialog_localizatorSwitchButton {
  margin: 0 0 0 -1px;
  padding: 5px 6px 3px;
  border-radius: 0;
}
.mDialog_localizatorSwitchButton:not(.mDialog_localizatorSwitchButton-selected) {
  filter: saturate(0%);
}

.dropdownAsDialog {
  background-color: var(--gray-f);
  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPScjYmJiJyBoZWlnaHQ9JzI0JyB2aWV3Qm94PScwIDAgMjQgMjQnIHdpZHRoPScyNCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNNyAxMGw1IDUgNS01eicvPjxwYXRoIGQ9J00wIDBoMjR2MjRIMHonIGZpbGw9J25vbmUnLz48L3N2Zz4=");
  /* <svg fill='#bbb' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg> */
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: -3px;
  box-sizing: border-box;
  padding: 4px 8px;
  box-shadow: none;

  border-radius: 0;
  border: 1px solid var(--gray-d);
  color: var(--gray-0);
  margin: 0 0 2px 0;
  padding: 2px 4px;
  font-size: var(--font-size);
  cursor: pointer;
}
.dropdownAsDialog-disabled {
  background-color: var(--gray-e);
  color: var(--gray-8);
}

.mFile {
  background-color: var(--gray-f);
  border: 1px solid var(--gray-d);
  color: var(--gray-4);
  border-radius: 0;
  padding: 0;
  margin: 0 0 2px 0;
}
.mFile-activeDragAndDrop {
  outline: 4px dashed var(--activeLED);
}
.mFile_buttonDelete {
  border-radius: 0;
  background-color: var(--gray-f-50);
  color: var(--gray-a);
  right: 0px;
  top: 0px;
  font-size: 20px;
}
.mFile_progressBar div {
  background-color: var(--activeLED);
}

.mFile-transparentBg {
  background: repeating-linear-gradient(-45deg,
    rgba(0,0,0,0),
    rgba(0,0,0,0) 4px,
    rgba(0,0,0,0.1) 4px,
    rgba(0,0,0,0.1) 8px
  );
}

.mFloatingMenu {
  background-color: var(--gray-f8);
  box-shadow: 4px 4px 12px var(--gray-0-25);
  border: 1px solid var(--gray-d);
  overflow-y: scroll;
  padding: 12px;
  border-radius: 3px;
}
.darkTheme .mFloatingMenu {
  box-shadow: 2px 2px 8px rgb(0, 0, 0, 0.5);
}

.mFloatingMenu_item {
  width: 100%;
  background-color: transparent;
  color: var(--gray-4);
  border: 0 none;
  padding: 10px 8px;
  margin: 0;
  text-align: left;
  font-size: var(--font-size);
  cursor: pointer;
}
.mFloatingMenu-hasSelectableItems .mFloatingMenu_item {
  padding-left: 20px;
}
.mFloatingMenu_item-divider {
  display: block;
  width: 100%;
  border-top: 1px solid var(--gray-d);
  margin: 5px 0 4px;
  padding: 0px;
  cursor: default;
}
.mFloatingMenu_item:disabled {
  background-color: var(--gray-e);
  color: var(--gray-a);
  cursor: default;
}
.mFloatingMenu_item:hover:not(.mFloatingMenu_item-divider) {
  background-color: var(--gray-d);
}
.mFloatingMenu_item:disabled:hover {
  background-color: var(--gray-e);
}

.mFloatingMenu_item-checked:before {
  position: absolute;
  top: 10px;
  left: 4px;
  content: "\f00c";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
}
.mFloatingMenu_item-submenu:before {
  position: absolute;
  top: 9px;
  right: 6px;
  content: "\f0da";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
}
.mFloatingMenu_item i {
  width: 1em;
  text-align: center;
  margin-right: 0.3em;
}
.mFloatingMenu-addContent {
  background-color: var(--gray-c);
  padding: 8px;
  font-size: var(--font-size);
}

.mDropdown_menu {
  box-sizing: border-box;
}
.mDropdown_item-selected {
  background-color: var(--gray-d);
}


.mGroup {
  margin-top: 10px;
  border: 1px solid var(--gray-d);
  padding: 8px 2px 2px;
  position: relative;
}
.tDialog .mGroup {
  border-color: var(--gray-c);
}
.mGroup-isMinimized {
  border-left: none;
  border-right: none;
  border-bottom: none;
}
.mGroup-hidden {
  display: none;
}
.mGroup_title {
  padding: 2px 2px;
  display: inline-block;
  position: absolute;
  top: -10px;
  left: 8px;
  background-color: var(--gray-c);
  font-size: var(--font-size);
}


.mConsole_row-error {
  font-weight: bold;
  color: #d00;
}
.mConsole_row-important {
  color: #048;
  font-weight: bold;
}
.mConsole_row-event {
  color: #f80;
}
.mConsole_row-history {
  color: #084;
  display: none;
}
.mConsole_row-source {
  color: #804;
}
.mConsole_row-container {
  color: #088;
  display: none;
}
.mConsole_row-api {
  color: #480;
}

.mConsole_row-faded {
  opacity: 0.3;
}

.mRadioRow-sidebarStatistics {
  background-color: var(--gray-f);
  width: 10em;
  margin: 0 auto;
  font-size: 10px;
}
.mRadioRow-sidebarStatistics .mRadioRow_item {
  padding: 2px 2px 2px;
}
.mRadioRow-sidebarStatistics .mRadioRow_item p {
  margin: 0;
}

.mFoldersItem {
  position: relative;
  padding: 4px 4px 4px 16px;
  cursor: pointer;
  border: 1px solid transparent;
}
.mFoldersItem:hover {
  border-color: var(--gray-8);
}
.mFoldersItem-selected {
  background-color: var(--gray-e);
}
.mFoldersItem:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.mFoldersItem-selected:before {
  background-color: var(--activeLED);
}



/* triobo elements */


.tDialog {
  width: 400px;
}
.tDialog a {
  color: var(--primary-color);
}
.tDialog-medium {
  width: 640px;
}
.tDialog-error {
  width: 480px;
}
.tDialog-error pre {
  white-space: pre-line;
  font-family: monospace;
  font-size: 10px;
}
.tDialog-wide {
  width: 900px;
}
.tDialog-wider {
  width: 1300px;
}
.tDialog-proofreadingNote {
  width: 500px;
  vertical-align: bottom;
  margin-bottom: 16px;
}
.tDialog-readersZoneAdmin {
  width: 1200px;
}

.tDialog-login .mDialog_header {
  background-color: transparent;
  padding: 8px;
}
.tDialog-login_footer {
  color: var(--gray-b);
}

.tDialog-resetPassword {
  width: 280px;
}

.tDialog-stop .mDialog_content,
.tDialog-warning .mDialog_content {
  padding: 12px 8px 36px 100px;
  position: relative;
}
.tDialog-stop .mDialog_content:before,
.tDialog-warning .mDialog_content:before {
  position: absolute;
  left: 24px;
  top: 10px;
  font: normal normal normal 64px/1 FontAwesome;
  color: var(--primary-color);
}
.tDialog-stop .mDialog_content:before {
  content: "\f05e";
}
.tDialog-warning .mDialog_content:before {
  content: "\f06a";
}

p.tDialog_subtitle {
  font-weight: 200;
  font-size: var(--font-size-big);
  color: #088;
  margin: 8px 0;
  border-top: 1px solid #088;
  padding-top: 4px;
}
p.tDialog_subtitle:first-child:not(.mBorderOnTop) {
  margin-top: 0;
  padding-top: 0;
  border-top: 0 none;
}
.mElementsWithLabels_row:not(:first-child) p.tDialog_subtitle {
  margin-top: 12px;
  border-top: 1px solid #088;
  padding-top: 4px;
}

.tDialog_note {
  font-size: 80%;
  color: var(--gray-6);
  margin: 2px 0 8px;
}
.tDialog_error {
  color: var(--warning);
}
.tDialog_minibutton {
  background-color: var(--gray-d);
  color: var(--gray-8);
  height: 29.5px;
  margin: 0;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  padding: 7px 3px 0;
  box-sizing: border-box;
}
.tDialog_minibutton:hover {
  background-color: var(--gray-b);
}
.tDialog_warning {
  background-color: var(--gray-e);
  padding: 8px;
  margin: 8px 0;
}
.tDialog_warning b {
  color: var(--warning);
}

.tDialog_unhidePasswordCheckbox {
  position: absolute;
  right: 4px;
  top: 2px;
  cursor: pointer;
}

.tDialog-notification_remainInfo {
  text-align: center;
  font-size: 80%;
  padding-bottom: 8px;
}
.tDialog-notification_remainInfo span:first-child:after {
  content: " ";
}
.tDialog-notification_remainInfoData-warn {
  color: red;
}
.tDialog-notification_targetedDevices {
  margin: 16px 0;
  padding: 8px;
  border: 1px solid var(--gray-d);
  background-color: var(--gray-e);
}
.mTable-publisherUsers {
  height: 400px;
  max-height: calc(100vh - 100px);
}

.tDialog_infoBox {
  border: 1px solid var(--gray-d);
  background-color: var(--gray-e);
  padding: 4px;
}

.tDialog_recordsButton {
  float: right;
  border: 0 none !important;
  background-color: transparent !important;
  color: var(--gray-a);
  margin: 0;
}
.tDialog_recordsButton:hover {
  color: var(--gray-0);
}
.tDialog .mGroup_title {
  background-color: var(--gray-d);
}

.tDialog_buttonRow .mButton {
  margin: 0 1px 0 0;
  padding: 2px 8px;
  line-height: 15px;
}

.tCookieManager_mainDialog {
  width: 480px;
}
.tCookieManager_mainDialog p {
  margin: 8px 0;
  line-height: 120%;
}
.tCookieManager_serviceIcon {
  float: right;
  margin: 8px 0 0 4px;
}
.tCookieManager_serviceIcon i {
  width: 1.6em;
  height: 1.6em;
  text-align: center;
  font-size: 300%;
  border-radius: 3px;
  padding: 0;
  color: var(--primary-color);
}
.tCookieManager_service {
  border-top: 1px solid var(--gray-d);
}
.tCookieManager_moreInfo a {
  border-color: var(--primary-color);
}
.tCookieManager_serviceOptions {
  margin-left: 0;
  margin-top: 0;
}




.fragmentsList_item {
  background-color: var(--gray-f);
  box-sizing: border-box;
  width: auto;
  padding: 12px;
  margin: 2px 0px 2px;
  border: 1px solid var(--gray-d);
  font-size: var(--font-size);
  color: var(--gray-4);
  line-height: 1;
  cursor: pointer;
}
.fragmentsList_item:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}


.table {
  border: 1px solid var(--gray-d);
  width: 100%;
  margin: 1px 0;
}
.table tr:nth-child(even) {
  background-color: var(--gray-f8);
}
.table tr:nth-child(odd) {
  background-color: var(--gray-e);
}
.table tr.header {
  font-weight: bold;
  border-bottom: 1px solid var(--gray-d);
  background-color: var(--gray-d);
}
.table tr.total {
  font-weight: bold;
  border-top: 1px solid var(--gray-d);
  background-color: var(--gray-d);
}
.table td.alignRight {
  text-align: right;
}
.table th, .table td {
  padding: 2px 4px;
}

.folderThumbnail {
  box-sizing: border-box;
  border: 1px solid var(--gray-d);
  background-color: var(--gray-c);
  cursor: pointer;
  font-size: 0px;
  position: relative;
  line-height: 0;
  border-radius: 4px;
  border-top-left-radius: 0px;
  padding: 8px;
}
.folderThumbnail:after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: -12px;
  left: -1px;
  width: 35%;
  height: 12px;
  border: 1px solid var(--gray-d);
  background-color: var(--after-bg, var(--gray-c));
  border-bottom: 0 none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.SA_publishers {
  margin: -8px;
  height: 100%;
}
.SA_publishers .mTable {
  height: 100%;
}
.SA_publisherApplicationIcon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 2px;
  background-color: #fff;
  border-radius: 3px;
  object-fit: contain;
}
.SA_applications {
  margin: -8px;
  height: 100%;
}
.SA_applications .mTable {
  height: 100%;
}
.SA_jobs {
  margin: -8px;
  height: 100%;
}
.SA_jobs .mTable {
  height: 100%;
}
.SA_vocabulary {
  margin: -8px;
  height: 100%;
}
.SA_vocabulary .mTable {
  height: 100%;
}


.applicationCertificateStatus {
  padding-left: 10px;
  position: relative;
}
.applicationCertificateStatus:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0px;
  top: 2px;
  width: 4px;
  height: 10px;
  background-color: rgb(0, 255, 0);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.applicationCertificateStatus-ending:before {
  background-color: rgb(255, 128, 0);
}
.applicationCertificateStatus-obsolete:before {
  background-color: rgb(255, 0, 0);
}
.applicationCertificateStatus-invalid:before {
  background-color: rgb(255, 0, 0);
}
.applicationCertificateStatus-no:before {
  display: none;
}


.tDialog-readersZoneAdmin .mElementsWithLabels_element .mCheckbox.mInline-50 {
  height: 21px;
}
.tDialog-readersZoneAdmin .mElementsWithLabels_element .mCheckbox.mInline-50 .mCheckbox_checkbox {
  right: 0;
  margin: 0 auto;
  top: 4px;
}
.tDialog-readersZoneAdmin .mElementsWithLabels_row:hover {
  background-color: var(--gray-c);
}

.userSession {
  padding-left: 10px;
  position: relative;
}
.userSession:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0px;
  top: 2px;
  width: 4px;
  height: 10px;
  background-color: rgb(200, 200, 200);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.userSession-active:before {
  background-color: var(--activeLED);
}

.svgicon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0px;
  fill: currentColor;
  stroke: currentColor;
}

.frame {
  pointer-events: none;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;

  -webkit-user-select: none;
  user-select: none;

  outline: 0px solid var(--selecting-color);
  border-style: solid;

  white-space: normal;
  word-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-nbsp-mode: normal;
  unicode-bidi: embed;
  -webkit-font-variant-ligatures:normal;
  -webkit-font-kerning: normal;
  -webkit-font-smoothing:antialiased;
  -webkit-font-feature-settings: "kern";
  -webkit-column-fill: auto;
  column-fill: balance;
  column-gap: 0px;
}
em.frame {
  display: inline-block;
  text-indent: 0;
}

.frame.frame-isOpened[contenteditable] {
  -webkit-user-select: text;
  user-select: text;
}
.nbsp {
  white-space: nowrap;
  position: relative;
}
.alwaysShowFrameBorders .nbsp:before {
  position: absolute;
  content: "^";
  bottom: 0;
  left: 0;
  font-size: 50%;
}

::selection, .text-selected {
  background: #ACCEF7;
}
.alwaysShowFrameBorders .frame {
  outline: 1px solid #0af8;
}
.alwaysShowFrameBorders .frame p {
  outline: 1px solid #f0a8;
}
.alwaysShowFrameBorders .frame span {
  outline: 1px solid #0fa8;
}
.alwaysShowFrameBorders .frame-typePage {
  outline: 0px none;
}
.alwaysShowFrameBorders .frame-typeImage {
  outline: 1px solid #f808;
}
.alwaysShowFrameBorders .frame-typePdf {
  outline: 1px solid #8f08;
}
.alwaysShowFrameBorders .frame-typeFragment {
  outline: 1px dashed #0a08;
}
.alwaysShowFrameBorders .frame-typeArea {
  outline: 1px solid #0af8;
  background: repeating-linear-gradient(-45deg, #0af8, #0af8 6px, #0000 6px, #0000 12px);
}
.alwaysShowFrameBorders .frame-typeArea span {
  outline: 0px none;
}
.alwaysShowFrameBorders .frame-typeOnline p {
  outline: 0px none;
}
.alwaysShowFrameBorders .frame-isAnchor:before, .frame-isAnchor:hover:before {
  position: absolute;
  top: 4px;
  left: 4px;
  opacity: 0.5;
  content: "\f13d";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 14px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.alwaysShowHiddenFrames .frame-isHidden {
  display: block !important;
}
.alwaysShowHiddenFrames .frame-isHidden:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, #0002, #0002 6px, #0000 6px, #0000 12px);
}


.frame-typePage {
  left: 0px;
  top: 0px;
  width: 100%;
  outline: 0px none #0000;
  font-size: 16px;
}
.frame-typeText {
}
.frame-typeArea {
  min-height: 2px;
  min-width: 2px;
}
.frame-isOpened > .frame-typeArea {
  outline: 1px solid #0af8;
  background: repeating-linear-gradient(-45deg, #0af8, #0af8 6px, #0000 6px, #0000 12px);
}
.frame-typeEasyReading {
  min-height: 2px;
  min-width: 2px;
}
.frame-isOpened > .frame-typeEasyReading.frame-simpleArticle {
  outline: 1px solid #f808;
  background: repeating-linear-gradient(-45deg, #f808, #f808 6px, #0000 6px, #0000 12px);
}
.frame-isOpened > .frame-typeEasyReading.frame-externalLink {
  outline: 1px solid #0f88;
  background: repeating-linear-gradient(45deg, #0f88, #0f88 6px, #0000 6px, #0000 12px);
}
.frame-isLinked:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: 1px solid #f808;
  background: repeating-linear-gradient(-45deg, #f808, #f808 6px, #0000 6px, #0000 12px);
}
.frame-typeGroup {
  outline-style: dashed;
  min-height: 2px;
  min-width: 2px;
}
.frame-typeVariableObject {
  outline-style: dashed;
  min-height: 2px;
  min-width: 2px;
}
.frame-typeVariableObject:before {
  content: attr(data-dots);
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 16px;
  text-align: center;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 8px;
}
.frame-typeState {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 1s;
}
.frame-typeStateCurrent {
  display: block;
}
.frame-typeForm, .frame-typeFormItem, .frame-typeFormGroup, .frame-typeFormText, .frame-typeFormOption {
  outline-style: dashed;
  min-height: 2px;
  min-width: 2px;
}


div.frame-typeImage, div.frame-typePdf, div.frame-typeOnline, div.frame-typeVideo {
  font-size: 0px !important;
}
.audioPlayer {
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.audioPlayer:before {
  height: 100%;
  width: 1px;
  background-color: transparent;
  display: inline-block;
  vertical-align: middle;
  content: " ";
}
.audioPlayer .fa {
  font-size: 100%;
}
.audioPlayer .fa-play {
  padding-left: 10%;
}
.frame-typeAudio:not(.frame-typeAudioPlaying) .fa-pause {
  display: none;
}
.frame-typeAudioPlaying .fa-play {
  display: none;
}
.audioPlayer_control {
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
  margin: 0 0.4em 0 0;
}
.audioPlayer_control-seek {
  position: relative;
  width: calc(100% - 4.4em);
  height: 0.4em;
  border: 1px solid;
  border-radius: 0.2em;
  overflow: hidden;
}
.frame_audioPosition {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 0px;
  border-top: 1em solid;
}
.audioPlayer_control-time {
  margin: 0;
}
.frame-typeAudioMini .audioPlayer_control-play {
  margin: 0;
}
.frame-typeAudioMini .audioPlayer_control-seek {
  display: none;
}
.frame-typeAudioMini .audioPlayer_control-fast {
  display: none;
}
.frame-typeAudioMini .audioPlayer_control-time {
  display: none;
}
.frame-typeAudioMini .audioPlayer_control-duration {
  display: none;
}
.frame-typeAudioMini .audioPlayer_control-pbRate {
  display: none;
}
.frame-typeAudioSmall .audioPlayer_control-fast {
  display: none;
}
.frame-typeAudioSmall .audioPlayer_control-duration {
  display: none;
}
.frame-typeAudioSmall .audioPlayer_control-pbRate {
  display: none;
}
.frame-typeAudioWide .audioPlayer_control-seek {
  width: calc(100% - 7.5em);
}
.frame-typeAudioWide .audioPlayer_control-duration {
  display: none;
}
.frame-typeAudioWide .audioPlayer_control-pbRate {
  display: none;
}

.frame-typeAudioBig .audioPlayer:before {
  display: none;
}
.frame-typeAudioBig .audioPlayer {
  min-height: 5.8em;
}
.frame-typeAudioBig .audioPlayer_control-play {
  position: absolute;
  display: block;
  font-size: 3em;
  width: 3em;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.frame-typeAudioBig .audioPlayer_control-fast {
  position: absolute;
  display: block;
  font-size: 2em;
  bottom: 0.3em;
  margin: 0;
}
.frame-typeAudioBig .audioPlayer_control-backward {
  left: calc(33% - 1em);
}
.frame-typeAudioBig .audioPlayer_control-forward {
  right: calc(33% - 1em);
}
.frame-typeAudioBig .audioPlayer_control-seek {
  margin: 0.4em 0 0.1em;
  height: 0.8em;
  border-radius: 0.4em;
  width: calc(100% - 1em);
}
.frame-typeAudioBig .audioPlayer_control-time {
  display: block;
  float: left;
  margin: 0 0 3em 0.5em;
}
.frame-typeAudioBig .audioPlayer_control-duration {
  display: block;
  float: right;
  margin: 0 0.5em 3em 0;
}
.frame-typeAudioBig .audioPlayer_control-pbRate {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
}


.frame-typeBeforeAfterImage {

}
.frame-typeFragment {
  outline-style: dashed;
  outline-color: #0a0;
  min-height: 2px;
  min-width: 2px;
}


.frame-isSelectable {
  pointer-events: all;
}
.frame-isSelectable:hover {
  outline-width: 1px;
}
.frame-isSelected {
}
.frame-isSelected:hover {
  outline-width: 0px;
}
.frame-isEdited {
  pointer-events: all;
}
.frame-isFloating {
  z-index: 1;
}
.frame-articlesReader {
  height: calc(100vh - 300px);
  min-height: 300px;
}
.frame-isOpened {
  pointer-events: all;
  overflow: visible;
  padding-top: 0.02px; /* CSS hack: prevent margin-collapse if overflow=visible */
}
.frame-isMilked {
  opacity: 0.1 !important;
  pointer-events: none;
}

.frame-verticalAlign:before {
  content: " ";
  display: inline-block;
  height: 100%;
  width: 0px;
}
.frame-verticalAlign-middle p {
  display: inline-block;
  width: 100%;
}
.frame-verticalAlign-middle:before {
  vertical-align: middle;
}
.frame-verticalAlign-middle p {
  vertical-align: middle;
}
.frame-verticalAlign-bottom:before {
  vertical-align: bottom;
}
.frame-verticalAlign-bottom p {
  vertical-align: bottom;
}



.frame_par {
  margin: 0;
  border-style: solid;
}
.frame_par i.fa {
  font-size: 100%;
}
.frame_block {
  border-style: solid;
/*  display: inline-block;
  text-indent: 0; */
}
.frame_image, .frame_pdf {
  width: 100%;
  height: 100%;
}
.frame_youtube, .frame_vimeo, .frame_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame_iframe {
  width: 100%;
  height: 100%;
}
.frame_iFrameThumbnail {
  width: calc(100% - 1px);
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
}
.frame_iFrameThumbnail i {
  font-size: 200%;
}
.frame_videoPlayer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.frame_videoPlayer p {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  color: white;
  text-shadow: 0 0 4px black;
}
.frame_videoPlayer p i {
  font-size: 60px;
}

.frame-hasRatioHeight > .frame_image,
.frame-hasRatioHeight > .frame_video,
.frame-hasRatioHeight > .frame_youtube,
.frame-hasRatioHeight > .frame_vimeo,
.frame-hasRatioHeight > .frame_iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.frame-typeOnline.frame-hasRatioHeight > .frame-typeImage  {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.frame_audio {
  display: none;
}

.frame_afterImageWrapper {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.frame_beforeAfterSlider {
  position: absolute;
  color: black;
  background-color: white;
  overflow: visible;
}
.beforeAfterImage-horizontal .frame_beforeAfterSlider {
  top: 0;
  width: 2px;
  height: 100%;
  cursor: ew-resize;
}
.beforeAfterImage-vertical .frame_beforeAfterSlider {
  left: 0;
  height: 2px;
  width: 100%;
  cursor: ns-resize;
}
.frame_beforeAfterSlider:after {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  content: '\f0d9\00a0\f0da';
  padding-top: 6px;
  text-align: center;
  position: absolute;
  box-sizing: border-box;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-color: inherit;
}
.beforeAfterImage-horizontal .frame_beforeAfterSlider:after {
  top: calc(50% - 16px);
  left: -15px;
}
.beforeAfterImage-vertical .frame_beforeAfterSlider:after {
  transform: rotate(90deg);
  left: calc(50% - 16px);
  top: -15px;
}


.frame-typeFormOption {
  padding: 8px 4em 8px 0;
}
.frame-formActive .frame-typeFormOption {
  padding-right: 0;
}
.frame-typeForm:not(.frame-formActive) .frame-typeFormOption {
  padding-left: 0 !important;
}
.formOption_checkbox {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1.1em;
  height: 1.1em;
  margin: auto 0;
  box-sizing: border-box;
  background-color: white;
  border: 1px solid black;
  font: normal normal normal 20px/1 FontAwesome;
  text-align: center;
}
.frame-formActive .formOption_checkbox {
  display: block;
}
.formOption_bar {
  position: absolute;
  bottom: 0;
  left: 0;
}
.frame-formActive .formOption_bar {
  display: none;
}
.formOption_value {
  height: 1em;
  width: 4em;
  text-align: right;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
}
.frame-formActive .formOption_value {
  display: none !important;
}
.frame-formActive .frame-formTextSentNow {
  display: none !important;
}
.frame-formActive .frame-formTextAlreadySent {
  display: none !important;
}
.frame-formActive .frame-formTextClosed {
  display: none !important;
}

.frame-formSentNow .frame-formTextButton {
  display: none !important;
}
.frame-formSentNow .frame-formTextAlreadySent {
  display: none !important;
}
.frame-formSentNow .frame-formTextClosed {
  display: none !important;
}

.frame-formAlreadySent .frame-formTextButton {
  display: none !important;
}
.frame-formAlreadySent .frame-formTextSentNow {
  display: none !important;
}
.frame-formAlreadySent .frame-formTextClosed {
  display: none !important;
}

.frame-formClosed .frame-formTextButton {
  display: none !important;
}
.frame-formClosed .frame-formTextSentNow {
  display: none !important;
}
.frame-formClosed .frame-formTextAlreadySent {
  display: none !important;
}

.frame-formHideResults.frame-formSentNow .frame-typeFormItem {
  display: none !important;
}
.frame-formHideResults.frame-formAlreadySent .frame-typeFormItem {
  display: none !important;
}
.frame-formHideResults.frame-formClosed .frame-typeFormItem {
  display: none !important;
}

.frame-addContentByMouse {
  cursor: crosshair;
}
.frame-addContentByMouse * {
  pointer-events: none;
}

.frame_field {
  background: repeating-linear-gradient(-45deg, #fe02, #fe02 8px, #fe08 8px, #fe08 16px);
}
.frame_field.text-selected {
  background: transparent;
  outline: 2px dotted var(--selecting-color);
}

.frame-typeTable {
  border-collapse: collapse;
}
.frame-typeTableRow {}
.frame-typeTableData {
  border: 1px solid #000;
}


.previewMode .frame {
  outline: 0px none;
  pointer-events: all;
}
.previewMode .audioPlayer_control {
  pointer-events: all;
}
.previewMode iframe {
  width: 100%;
  height: 100%;
  pointer-events: all;
}
.previewMode .frame_field {
  background: transparent;
}


.proofreadingMode .frame {
  pointer-events: all;
  -webkit-user-select: text;
  user-select: text;
}
.hasNote {
  position: relative;
}
.hasNote:before {
  position: absolute;
  z-index: 100;
  font: normal normal normal 20px/1 FontAwesome;
  text-align: center;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  text-indent: 0;
  padding: 0;
}
.hasNote_color-yellow:before {
  color: #ff0;
}
.hasNote_color-green:before {
  color: #0f0;
}
.hasNote_color-pink:before {
  color: #f4c;
}
.hasNote_color-blue:before {
  color: #4cf;
}
.hasNote_color-orange:before {
  color: #f80;
}
.hasNote_color-red:before {
  color: #f00;
}
.hasNote_icon-stickyNote:before {
  content: "\f249";
}
.hasNote_icon-exclamationTriangle:before {
  content: "\f071";
}
.hasNote_icon-exclamationCircle:before {
  content: "\f06a";
}
.hasNote_icon-flag:before {
  content: "\f024";
}
.hasNote_icon-thumbTack:before {
  content: "\f08d";
}
.hasNote_size-small:before {
  width: 16px;
  height: 16px;
}
.hasNote_size-medium:before {
  width: 32px;
  height: 32px;
  font-size: 32px;
}
.hasNote_size-big:before {
  width: 64px;
  height: 64px;
  font-size: 64px;
}
.hasNote_position-topLeft:before {
  top: 2px;
  left: 2px;
}
.hasNote_position-topRight:before {
  top: 2px;
  right: 2px;
}
.hasNote_position-center:before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.hasNote_position-bottomLeft:before {
  bottom: 2px;
  left: 2px;
}
.hasNote_position-bottomRight:before {
  bottom: 2px;
  right: 2px;
}
.showProofreadingNotes .frame_block.hasNote_color-yellow {
  background-color: #ff08;
}
.showProofreadingNotes .frame_block.hasNote_color-green {
  background-color: #0f08;
}
.showProofreadingNotes .frame_block.hasNote_color-pink {
  background-color: #f4c8;
}
.showProofreadingNotes .frame_block.hasNote_color-blue {
  background-color: #4cf8;
}
.showProofreadingNotes .frame_block.hasNote_color-orange {
  background-color: #f808;
}
.showProofreadingNotes .frame_block.hasNote_color-red {
  background-color: #f008;
}

.hasNote-closed:before {
  color: #eee;
}
.showProofreadingNotes .frame_block.hasNote-closed {
  background-color: #eee8;
}


.tEditor:not(.showProofreadingNotes) .hasNote:before {
  display: none;
}

.tEditor.showProofreadingNotes-newOnly .hasNote:not(.hasNote-new):before {
  display: none;
}
.tEditor.showProofreadingNotes-newOnly .frame_block:not(.hasNote-new) {
  background-color: #0000;
}

.tEditor.showProofreadingNotes-notClosed .hasNote.hasNote-closed:before {
  display: none;
}
.tEditor.showProofreadingNotes-notClosed .frame_block.hasNote-closed {
  background-color: #0000;
}

.frame_noonline {
  background: repeating-linear-gradient(-45deg, #aaa4, #aaa4 6px, #0000 6px, #0000 12px);
  width: 100%;
  height: 0px;
  padding-bottom: 75%;
}


/* tReader */
.tReader_articlesReader {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: repeating-linear-gradient(-45deg, #fa48, #fa48 6px, #0000 6px, #0000 12px);
}

.item {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: bottom;
  cursor: pointer;
  padding: 8px;
  overflow: hidden;
  width: 100%;
  position: relative;
  border: 1px solid transparent;
  margin: 4px;
}
.item-article {
  padding: 0;
}
.item-isFeatured {
  border: 1px solid var(--featured-border-color, var(--highlighting-color, currentcolor));
  border-radius: 3px;
  padding: 10px;
  background-color: var(--underdrawing-color, inherit);
}
.tReader_listOfItems-columns2 .item {
  width: calc(50% - 8px);
}
.tReader_listOfItems-columns3 .item {
  width: calc(33.3333% - 8px);
}
.tReader_listOfItems-columns4 .item {
  width: calc(25% - 8px);
}
.tReader_listOfItems-columns5 .item {
  width: calc(20% - 8px);
}
.tReader_listOfItems-columns6 .item {
  width: calc(16.6666% - 8px);
}
.tReader_listOfItems-columns7 .item {
  width: calc(14.2857% - 8px);
}
.tReader_listOfItems-columns8 .item {
  width: calc(12.5% - 8px);
}
.tReader_listOfItems-columns9 .item {
  width: calc(11.111% - 8px);
}
.tReader_listOfItems-columns10 .item {
  width: calc(10% - 8px);
}
.tReader_listOfItems-columns11 .item {
  width: calc(9.0909% - 8px);
}
.tReader_listOfItems-columns12 .item {
  width: calc(8.3333% - 8px);
}
.tReader_listOfItems-columns13 .item {
  width: calc(7.6923% - 8px);
}
.tReader_listOfItems-columns14 .item {
  width: calc(7.1428% - 8px);
}
.tReader_listOfItems-columns15 .item {
  width: calc(6.6666% - 8px);
}
.tReader_listOfItems-columns16 .item {
  width: calc(6.25% - 8px);
}
.tReader_listOfItems-columns17 .item {
  width: calc(5.8824% - 8px);
}
.tReader_listOfItems-columns18 .item {
  width: calc(5.5556% - 8px);
}
.tReader_listOfItems-columns19 .item {
  width: calc(5.2632% - 8px);
}
.tReader_listOfItems-columns20 .item {
  width: calc(5% - 8px);
}
.tReader_listOfItems-columnsMax .item {
  width: calc(5% - 8px);
}
.tReader_listOfItems-columns2 .item-double {
  width: calc(100% - 8px);
}
.tReader_listOfItems-columns3 .item-double {
  width: calc(66% - 8px);
}
.tReader_listOfItems-columns4 .item-double {
  width: calc(50% - 8px);
}
.tReader_listOfItems-columns5 .item-double {
  width: calc(40% - 8px);
}
.tReader_listOfItems-columns6 .item-double {
  width: calc(33.3333% - 8px);
}
.tReader_listOfItems-columns7 .item-double {
  width: calc(28.5714% - 8px);
}
.tReader_listOfItems-columns8 .item-double {
  width: calc(25% - 8px);
}
.tReader_listOfItems-columns9 .item-double {
  width: calc(22.222% - 8px);
}
.tReader_listOfItems-columns10 .item-double {
  width: calc(20% - 8px);
}
.tReader_listOfItems-columns11 .item-double {
  width: calc(18.1818% - 8px);
}
.tReader_listOfItems-columns12 .item-double {
  width: calc(16.6666% - 8px);
}
.tReader_listOfItems-columns13 .item-double {
  width: calc(15.3846% - 8px);
}
.tReader_listOfItems-columns14 .item-double {
  width: calc(14.2857% - 8px);
}
.tReader_listOfItems-columns15 .item-double {
  width: calc(13.3333% - 8px);
}
.tReader_listOfItems-columns16 .item-double {
  width: calc(12.5% - 8px);
}
.tReader_listOfItems-columns17 .item-double {
  width: calc(11.7647% - 8px);
}
.tReader_listOfItems-columns18 .item-double {
  width: calc(11.1111% - 8px);
}
.tReader_listOfItems-columns19 .item-double {
  width: calc(10.5263% - 8px);
}
.tReader_listOfItems-columns20 .item-double {
  width: calc(10% - 8px);
}
.tReader_listOfItems-columnsMax .item-double {
  width: calc(10% - 8px);
}

.thumbnail_wrapper {
  border: 1px solid var(--lines-color, #ddd);
  box-sizing: border-box;
  cursor: pointer;
  font-size: 0px;
}
.item-double .thumbnail_wrapper {
  display: inline-block;
  vertical-align: bottom;
  width: calc(50% - 9px);
}
.thumbnail_wrapper img {
  width: 100%;
}
.tReader_listOfItems-anyLandscape .item:not(.item-double) .thumbnail_wrapper-portrait {
  padding-left: 20%;
  padding-right: 20%;
}
.tReader_listOfItems-anyLandscape .item-double .thumbnail_wrapper-portrait {
  padding-left: 10%;
  padding-right: 10%;
}
.tReader_featuredIssueInfo {
  display: inline-block;
  width: calc(50% + 9px);
  vertical-align: bottom;
  padding: 0 0 0 8px;
  box-sizing: border-box;
}
.tReader_featuredIssueTitle {
  font-weight: bold;
  font-size: 120%;
  line-height: 120%;
  margin-bottom: 8px;
}
.tReader_featuredIssueDescription {
  font-weight: 200;
  font-size: 90%;
  line-height: 120%;
}
.tReader_featuredIssueInfo .issueButtonsBar {
  margin-top: 4px;
}

.item_title {
  margin-top: 4px;
  font-weight: bold;
  line-height: 120%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.item_status {
  margin-top: 4px;
  float: right;
  color: var(--highlighting-color, inherit);
  line-height: 120%;
  overflow: hidden;
}
.item_progress {
  font-size: 50%;
}
.item_date, .item_subtitle {
  font-weight: 200;
  line-height: 120%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.tReader_groupWrapper {
  margin: 2px 0px;
  box-sizing: border-box;
  border: 4px solid var(--lines-color, #ddd);
  background-color: var(--lines-color, #ddd);
  cursor: pointer;
  font-size: 0px;
  position: relative;
}
.thumbnail_wrapper-issueInGroup {
  display: inline-block;
  margin: 0;
}
.tReader_groupWrapper-4thumbs .thumbnail_wrapper-issueInGroup {
  width: 50%;
}
.tReader_groupWrapper-9thumbs .thumbnail_wrapper-issueInGroup {
  width: 33.333%;
}

.thumbnail_wrapper-issueInGroup img {
  object-fit: cover;
  height: 100%;
}

.mainIconsBar {
  white-space: nowrap;
}
.mainIconsBarButton {
  display: inline-block;
  vertical-align: top;
  background-color: transparent;
  color: inherit;
  border: none;
  padding: 0.5em;
  margin: 0;
  cursor: pointer;
  position: relative;
  font-size: inherit;
}
.mainIconsBarButton:hover {
  background-color: transparent;
  color: inherit;
}
.mainIconsBarButton_icon {
  padding: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
}
.mainIconsBarButton_icon i {
  font-size: 150%;
}
.mainIconsBarButton_label {
  display: var(--component-labels, block);
  box-sizing: border-box;
  width: 100%;
  font-size: 60%;
  line-height: 1;
  white-space: nowrap;
}

.menuWrapper {
  white-space: nowrap;
  padding: 1px 0 0 0;
}
.menuItem {
  display: inline-block;
  vertical-align: top;
  padding: 0.125em;
  margin: 0;
  background-color: transparent;
  color: inherit;
  border: 0 none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  position: relative;
  font-size: inherit;
  border-radius: 0;
}
.menuItem_span {
  padding: 0.125em 0.5em;
  display: inline-block;
}
.menuWrapper-onEllipsisProcess .menuItem {
  opacity: 0;
}
.menuItem_icon {
  display: inline-block;
  font-size: 130%;
  vertical-align: middle;
}
.menuItem_icon i {
  font-size: 100%;
}
.menuItem_label {
  display: inline-block;
  padding: 0 0 0 0.5em;
  vertical-align: middle;
}
.menuItem_labelNoIcon {
  padding-left: 0;
}
.menuItem:hover {
  background-color: transparent;
  color: inherit;
  border-bottom-color: var(--highlighting-color);
}
.menuItem:focus {
  background-color: transparent;
  color: inherit;
  border: 0 none;
  /* outline: 1px dotted var(--highlighting-color); */
  outline: 0 none;
}
.menuItem-shrinked .menuItem_label {
  display: none;
}
.menuItem-collapsed {
  display: none;
}

.navigationBar,
.languageBar,
.applicationsBar {
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 75%;
}
.applicationsBar .mButton {
  background-color: var(--highlighting-color, inherit);
  border: 1px solid var(--highlighting-color, currentColor);
  color: var(--opposite-color, currentColor);
  border-radius: var(--buttons-border-radius, 0.375em);
}
.applicationsBar_icon {
  vertical-align: middle;
  width: 5em;
  height: 5em;
  display: inline-block;
  border-radius: 8px;
}
.applicationsBar_icon img {
  width: 100%;
  height: 100%;
}
.applicationsBar_text {
  vertical-align: middle;
  display: inline-block;
  margin: 0 1em;
}
.applicationsBar_platform {
  vertical-align: middle;
  display: inline-block;
}
.applicationsBar_platform i {
  font-size: 175%;
}

.navigationBar_part,
.languageBar_part,
.applicationsBar_part {
  display: inline-block;
  vertical-align: top;
}
a.navigationBar_part,
a.languageBar_part,
a.applicationsBar_part {
  padding: 0 0.25em;
  color: var(--highlighting-color);
  cursor: pointer;
  text-decoration: none;
}
.logoBar {
  box-sizing: border-box;
  padding: 0;
  height: 100%;
}
.logoBar_title {
  font-size: 175%;
  font-weight: bold;
  margin: 0.25em 0;
}
.logoBar .tImage {
  width: 100%;
  height: 100%;
}
.logoBar .tImage img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
}

.issueButtonsBar {

}
.issueButtonsBar_button {
  display: block;
  font-size: 87.5%;
  background-color: var(--highlighting-color, inherit);
  border: 1px solid var(--highlighting-color, currentColor);
  color: var(--opposite-color, currentColor);
  width: var(--buttons-width, auto);
  border-radius: var(--buttons-border-radius, 0.375em);
  margin: 8px 0;
  padding: 0.5em 1.5em;
}
.issueButtonsBar_button:hover {
  background-color: var(--opposite-color, inherit);
  color: var(--highlighting-color, inherit);
  border-color: var(--highlighting-color, currentColor);
}
.issueButtonsBar_button-featuredIssue {
  margin: 1px 0 4px;
}
.issueButtonsBar_button-hidden {
  display: none;
}
.issueButtonsBar-featured .issueButtonsBar_button {
  margin: 4px 0 0;
  width: 100%;
  font-size: 100%;
}

.otherPublicationsOverview {
  background-color: var(--underdrawing-color, inherit);
  padding: 8px;
}

.groupHeaderBar {
}

.groupHeaderBar_title {
  font-weight: 200;
  font-size: 200%;
}
.groupHeaderBar_button {
  background-color: var(--highlighting-color, inherit);
  border: 1px solid var(--highlighting-color, currentColor);
  color: var(--opposite-color, currentColor);
  border-radius: var(--buttons-border-radius, 0.375em);
  margin: 8px 0;
  padding: 0.5em 1.5em;
  font-size: 87.5%;
}
.groupHeaderBar_description {
  margin: 4px 0 8px;
  font-size: 80%;
}

.eshopCategoryHeaderBar {
}

.eshopCategoryHeaderBar_title {
  font-weight: 200;
  font-size: 200%;
}
.eshopCategoryHeaderBar_description {
  margin: 4px 0 8px;
  font-size: 80%;
}

.eshopItemVariantsTable {
  font-size: 15px;
  border: 1px solid var(--lines-color);
  margin: 0 0 16px 0;
}
.eshopItemVariantsTable_tr {
  cursor: pointer;
}
.eshopItemVariantsTable_tr:nth-child(even):not(.eshopItemVariantsTable_tr-selected) {
  background-color: rgba(128,128,128,0.1);
}
.eshopItemVariantsTable td {
  padding: 4px 6px;
  border: 1px solid var(--lines-color);
  vertical-align: middle;
}
.eshopItemVariantsTable_td-title {
  text-align: right;
}


.memberStatus_button {
  background-color: var(--highlighting-color, inherit);
  border: 1px solid var(--highlighting-color, currentColor);
  color: var(--opposite-color, currentColor);
  border-radius: var(--buttons-border-radius, 0.375em);
  margin: 8px 0;
  padding: 0.5em 1.5em;
  font-size: 87.5%;
}
.memberStatus .mElementsWithLabels_label {
  font-size: inherit;
}
.memberStatus .mInput {
  font-size: inherit;
  border-radius: var(--buttons-border-radius, 0.375em);
  border: 1px solid var(--highlighting-color, currentColor);
  color: var(--highlighting-color, currentColor);
}
.eShopInfo_button {
  background-color: var(--highlighting-color, inherit);
  border: 1px solid var(--highlighting-color, currentColor);
  color: var(--opposite-color, currentColor);
  border-radius: var(--buttons-border-radius, 0.375em);
  margin: 8px 0;
  padding: 0.5em 1.5em;
  font-size: inherit;
}

.tReader_searchbar {
}
.searchbar_navigation {
  margin: -0.5em -0.5em 0;
}
.mInput-search {
  border-color: var(--highlighting-color);
  background-color: var(--opposite-color);
  color: inherit;
  width: calc(100% - 36px);
  padding: 4px;
  border-radius: var(--buttons-border-radius, 0.375em);
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  height: 36px;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-size: 120%;
}
.mInput-search:focus {
  border-color: var(--highlighting-color);
}
.mButton-search {
  background-color: var(--highlighting-color);
  border: 1px solid var(--highlighting-color);
  color: var(--opposite-color);
  width: 36px;
  padding: 8px 0px 10px;
  margin-left: 0;
  border-radius: var(--buttons-border-radius, 0.375em);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 36px;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  text-align: center;
}
.mButton-search:hover {
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
}
.mButton-searchNav {
  border-radius: 0;
  padding: 8px 12px;
  color: var(--text-color);
  background-color: transparent;
  border: 0 none;
}
.mButton-searchNav:hover {
  color: var(--highlighting-color);
  background-color: transparent;
}


.mDialog_note {
  font-size: 80%;
}

.featuredArticlesWrapper {
}
.featuredArticle {
  box-sizing: border-box;
  margin: 0;
  padding: 0 8px 16px 0;
  clear: both;
  height: 8em;
  overflow: hidden;
}
.featuredArticlesWrapper-columns2 .featuredArticle {
  display: inline-block;
  width: 50%;
}
.featuredArticle_thumbnailWrapper {
  float: left;
  width: 6em;
  height: 6em;
  overflow: hidden;
  margin: 0 16px 0 0;
  cursor: pointer;
  transition: 0.5s transform;
}

.featuredArticle_thumbnailWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featuredArticle_title {
  font-size: 130%;
  margin-bottom: 4px;
}
.featuredArticle_title:hover {
  text-decoration: underline;
  cursor: pointer;
}
.featuredArticle_description {
  font-weight: 200;
  line-height: 120%;
  font-size: 87.5%;
}

.issueBox {
}
.issueBox_title {
  font-size: 28px;
  font-weight: 200;
  margin-bottom: 16px;
}
.issueBox_part {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  box-sizing: border-box;
}
.issueBox_part-right {
  padding-left: 16px;
}
.issueBox_description {
  font-weight: 200;
  line-height: 120%;
  font-size: 87.5%;
}
.issueBox_date {
  font-weight: 200;
  line-height: 120%;
  font-size: 87.5%;
}
.issueBox_buttons {
  display: flex;
  justify-content: center;
}
.issueBox_buttons .issueButtonsBar_button {
  flex: 0 1 50%;
  border-radius: 0;
  margin-right: 1px;
  background-color: var(--highlighting-color, inherit);
  border: 1px solid var(--highlighting-color, currentColor);
  color: var(--opposite-color, currentColor);
}
.issueBox_buttons .issueButtonsBar_button:first-child {
  border-top-left-radius: var(--button-border-radius, 0.375em);
  border-bottom-left-radius: var(--button-border-radius, 0.375em);
}
.issueBox_buttons .issueButtonsBar_button:last-child {
  border-top-right-radius: var(--button-border-radius, 0.375em);
  border-bottom-right-radius: var(--button-border-radius, 0.375em);
  margin-right: 0px;
}

/* publisher info */
.publisherInfoPart {
  margin: 1.5em 0;
  line-height: 120%;
}
.publisherInfoPart-title {
  font-weight: bold;
}
.publisherInfoPart-triobo {
  color: #888;
}
.publisherInfo .tImage {
  width: 100%;
  height: 1.5em;
  margin: 0 0 1em 0;
}
.publisherInfo .tImage  img {
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.publisherInfo_poweredBy {
  display: block;
  width: 16em;
  height: 1.5em;
  margin: 2em 0 0 -5px;
  mix-blend-mode: screen;
  background-image: url('powered_by_Triobo.png');
  background-size: 100% 100%;
  cursor: pointer;
}
.publisherInfo a {
  color: var(--highlighting-color);
}

.panelContainer {
  position: absolute;
  background-color: var(--gray-c);
  border: 1px solid var(--gray-4);
  box-sizing: border-box;
  font-size: 12px;
  transition: 0.25s all;
}
.panelContainersLayer-hidden {
  display: none;
}
.panelContainersLayer-noAnimations .panelContainer {
  transition: 0s none;
}
.panelContainer_header {
  box-sizing: border-box;
  width: 100%;
  background-color: var(--gray-8);
  color: var(--gray-4);
  padding: 3px 1px 0px 1px;
}
.panelContainer_headerPart {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
}
.panelContainer_headerPart-handle {
  width: 18px;
  text-align: center;
  cursor: move;
  padding-bottom: 2px;
}
.panelContainer_headerPart-panels {
  width: calc(100% - 36px);
  position: relative;
  white-space: nowrap;
}
.panelContainer_headerPart-menu {
  width: 18px;
  text-align: center;
  cursor: pointer;
  padding-bottom: 2px;
}


.panelContainer-isClosed {
  opacity: 0;
}

.panel_heightHandler {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 4px;
  width: 100%;
  cursor: ns-resize;
}
.panel_heightHandler:hover {
  border-bottom: 2px solid var(--gray-4);
}
.panelContainer-hasFixHeight .panel_heightHandler {
  display: none;
}

.ted {
  position: relative;
  box-sizing: border-box;
  border: 1px solid var(--gray-d);
  color: var(--gray-0);
  background-color: var(--gray-f);
  border-radius: 3px;
}
.ted-disabled {
  pointer-events: none;
}
.ted-disabled:after {
  position: absolute;
  content: " ";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gray-a-50);
}
.ted-hidden {
  display: none;
}
.ted_topToolbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: var(--gray-d);
}
.ted_topToolbarGroup {
  display: inline-block;
  padding: 4px 2px;
}
.ted_topToolbarGroup:not(:first-child) {
  border-left: 1px solid var(--gray-c);
}
.ted_topToolbar .mButton {
  vertical-align: bottom;
  margin: 0 2px;
  padding: 5px 8px 5px;
  border: 1px solid var(--gray-c);
  border-radius: 3px;
}
.ted_topToolbar .mButton .mButton_menu {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: bottom;
  margin: -3px -5px -2px 5px;
  padding: 3px 3px 2px;
  border-color: var(--gray-a);
}
.ted_topToolbar .mButton-selected {
  background-color: var(--gray-b);
}
.ted_topToolbarButton-blockStyle .mButton_content {
  width: 7em;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: bottom;
}


.ted_content {
  box-sizing: border-box;
  padding: 36px 4px 2px;
  outline: 0px none transparent;
  font-family: NotoSans, Helvetica, Arial, sans;
  font-weight: normal;
  font-size: var(--font-size);
  line-height: var(--def-line-height);
  height: 100%;
  overflow-y: scroll;
}
.ted:focus {
  border-color: var(--activeLED);
}
.ted:disabled {
  background-color: var(--gray-d);
  color: var(--gray-8);
}

.frame-typeComponent .ted_content {
  padding: 0;
}

.ted_content p {
  margin: 0.5em 0;
}
.ted_content p.perex {
  margin: 1em 0;
  font-weight: 200;
  font-size: 120%;
  text-transform: uppercase;
}
.ted_content h1 {
  font-weight: bold;
  font-size: 200%;
  margin: 1em 0 0.5em;
}
.ted_content h2 {
  font-weight: bold;
  font-size: 150%;
  margin: 1em 0 0.5em;
}
.ted_content h3 {
  font-weight: bold;
  font-size: 120%;
  margin: 1em 0 0.5em;
}
.ted_content a {
  text-decoration: none;
  border-bottom: 1px dotted var(--primary-color);
  color: var(--primary-color);
}
.ted_content b {
  font-weight: bold;
}
.ted_content i {
  font-style: italic;
}
.ted_content blockquote {
  background-color: var(--gray-d);
  border-left: 0.5em solid var(--gray-8);
  padding: 0.5em 0.5em 0.5em 1em;
  margin: 0.5em 0;
}
.ted_content .ted_image {
  line-height: 0;
  display: block;
}
.ted_content .ted_image-selected img {
  outline: 2px solid var(--highlight-color);
}
.ted_content .ted_image img {
  width: 100%;
  position: relative;
}

.ted_content .ted_online {
  line-height: 0;
  display: block;
}
.ted_content .ted_online-selected img {
  outline: 2px solid var(--highlight-color);
}

.ted_content ul {
  margin: 0.5em 0;
  list-style: initial;
  padding: 0 0 0 1em;
}
.ted_content li {
  padding: 0;
  margin: 0;
}
.ted_content ul>ul {
  margin: 0;
}

.tin {
  display: block;
  position: relative;
  padding: 1px 0px 1px 6px;
  font-size: 12px;
  color: var(--gray-1);
  line-height: 1;
}
.tin .svgicon {
  vertical-align: top;
  width: 1em;
  height: 1em;
  padding: 3px 0;
}

.tin:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0px;
  top: 5px;
  width: 4px;
  height: 10px;
  background-color: var(--activeLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.tin-default:before {
  background-color: var(--passiveLED);
}

.tin-big {
  font-size: 24px;
}
.tin-big .tin_radioRowItem {
  padding: 1px 1px;
}
.tin-big .tin_part {
  height: 34px;
}
.tin-big .tin_part-menu:after {
  font-size: 40%;
  vertical-align: bottom;
}
.tin-big:before, .tin-anchor:before {
  top: 14px;
}
.tin-big i {
  margin: 4px 5px 0px;
  font-size: 22px;
}

.tin-bigIcons .tin_radioRowItem {
  padding: 6px 0px;
  width: 28px;
  text-align: center;
}
.tin-bigIcons .tin_part {
  height: 34px;
}
.tin-bigIcons .tin_part-menu:after {
  font-size: 40%;
  vertical-align: bottom;
}
.tin-bigIcons:before {
  top: 14px;
}
.tin-bigIcons i {
  font-size: 20px;
}

.tin_part {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  overflow: hidden;
  height: 18px;
  line-height: 18px;
}

.tin_part-value {
  font-size: 90%;
  padding: 2px;
  border: 1px solid var(--gray-1);
  outline: 0px none;
  margin: 0;
}
.tin_part-value:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 4px var(--primary-color);
}
.tin-default .tin_part-value {
  border-color: var(--gray-6);
  background-color: var(--gray-c);
}
.tin_part-number {
  text-align: right;
}
.tin_part-text {
  
}

.tin_part-menu {
  font-size: 70%;
  text-align: center;
  background-color: var(--gray-1);
  color: white;
  padding: 0 2px;
  cursor: pointer;
}
.tin-default .tin_part-menu {
  background-color: var(--gray-6);
}
.tin_part-menu:after {
  content: "\f0d7";
  font-family: FontAwesome;
  padding: 0 1px 0 2px;
}

.tin_part-utils {
  /* min-width: 27px; */
  text-align: right;
}

.tin_part-radioRow {
  display: inline-flex;
  border: 1px solid var(--gray-1);
  color: var(--gray-1);
  background-color: var(--gray-f);
}
.tin-default .tin_part-radioRow {
  border-color: var(--gray-6);
  color: var(--gray-6);
  background-color: var(--gray-c);
}
.tin_radioRowItem {
  padding: 0px 4px;
  cursor: pointer;
}
.tin_radioRowItem:hover {
  background-color: var(--gray-a);
}
.tin_radioRowItem-on, .tin_radioRowItem-on:hover {
  background-color: var(--gray-1);
  color: var(--gray-f);
}
.tin-default .tin_radioRowItem-on, .tin-default .tin_radioRowItem-on:hover {
  background-color: var(--gray-6);
  color: var(--gray-c);
}


.tin_part-color {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gray-1);
  cursor: pointer;
  margin: 0px;
}
.tin-default .tin_part-color {
  border-color: var(--gray-6);
}
.tin_part-color:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg,
    rgba(0,0,0,0),
    rgba(0,0,0,0) 4px,
    rgba(0,0,0,0.1) 4px,
    rgba(0,0,0,0.1) 8px
  );
}
.tin_colorSquare {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}


.tin_part-dropdown {
  background-color: var(--gray-f);
  border: 1px solid var(--gray-6);
  padding: 0 4px;
  cursor: pointer;
}

.tinRow .tin {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.tinRow .tin:last-child {
  margin-right: 0px;
}
.tinRow-hidden {
  display: none;
}

.tinRow_column {
  display: inline-block;
  vertical-align: top;
  margin-right: 4px;
}
.tinRow_column:last-child {
  margin-right: 0px;  
}
.tinRow_column-hidden {
  display: none;
}
.tinRow_column .tin {
  display: block;
  margin-left: 0px;
}
.tin-hidden, .tinRow .tin-hidden, tinRow_column .tin-hidden {
  display: none;
}


.tin-font .tin_part-value, .tin-source .tin_part-value {
  text-align: left;
}



.tin_part-anchors {
  width: 30px;
  height: 30px;
  margin: 2px 4px;
  position: relative;
}
.tin_anchor {
  position: absolute;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.tin_anchor:before {
  position: absolute;
  width: 6px;
  height: 6px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: " ";
  background-color: var(--gray-1);
}
.tin_anchor-selected {
  background-color: var(--gray-1);
}
.tin_anchor-selected:before {
  background-color: var(--gray-c);
}
.tin_anchor-topLeft {
  left: 0px;
  top: 0px;
}
.tin_anchor-top {
  left: calc(50% - 5px);
  top: 0px;
}
.tin_anchor-topRight {
  right: 0px;
  top: 0px;
}
.tin_anchor-left {
  left: 0px;
  top: calc(50% - 5px);
}
.tin_anchor-center {
  left: calc(50% - 5px);
  top: calc(50% - 5px);
}
.tin_anchor-right {
  right: 0px;
  top: calc(50% - 5px);
}
.tin_anchor-bottomLeft {
  left: 0px;
  bottom: 0px;
}
.tin_anchor-bottom {
  left: calc(50% - 5px);
  bottom: 0px;
}
.tin_anchor-bottomRight {
  right: 0px;
  bottom: 0px;
}




.contentWrapper {
  box-sizing: border-box;
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: calc(100% - 20px);
  overflow: scroll;
}
.toolBarMode-narrow .contentWrapper {
  left: 40px;
  width: calc(100% - 40px);
}
.toolBarMode-wide .contentWrapper {
  left: 160px;
  width: calc(100% - 160px);
}


.mainRuler {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 0;
  height: 20px;  
  background-color: var(--gray-f);
  border-bottom: 1px solid var(--gray-0);
  background-size: 32px 4px;
  background-repeat: repeat-x;
  background-position-y: 7px;
  background-image: repeating-linear-gradient(90deg, var(--gray-8), var(--gray-8) 1px, #0000 1px, #0000 32px);
}
.toolBarMode-narrow .mainRuler {
  left: 40px;
  width: calc(100% - 40px);
}
.toolBarMode-wide .mainRuler {
  left: 160px;
  width: calc(100% - 160px);
}
.mainRuler_inner {
  position: absolute;
  top: 0;
  height: 15px;
  margin: 1px 0;
  background-color: var(--gray-d);
  border: 1px solid var(--gray-8);
  font-size: 12px;
  color: var(--gray-4);
  background-size: 32px 4px;
  background-repeat: repeat-x;
  background-position-y: 5px;
  background-image: repeating-linear-gradient(90deg, var(--gray-8), var(--gray-8) 1px, #0000 1px, #0000 32px);
}
.mainRuler_handle {
  position: absolute;
  top: 0;
  text-align: right;
  cursor: ew-resize;
  padding: 1px 4px;
}
.mainRuler_handle-left {
  left: 0;  
}
.mainRuler_handle-right {
  right: 0;
}


.contentArea {
  position: absolute;
  left: 0;
  top: 0;
}
.content {
  top: 0;
  left: 0;
  border: 1px solid var(--gray-d);
  background-color: white;
  position: absolute;
  z-index: 0;
}
.proofreadingNotesBar {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.tEditor:not(.showProofreadingNotes) .proofreadingNotesBar {
  display: none;
}

.pageToolbar {
  position: absolute;
  height: 3em;
  top: calc(512px - 3em);
  padding: 2px 0;
}
.pageToolbar_rightGroup {
  position: absolute;
  right: -4px;
  top: 0px;
  padding: 2px 0;
}

.proofreadingNote {
  position: absolute;
  padding: 4px;
  box-sizing: border-box;
  width: 100%;
  max-width: 200px;
  border: 1px solid var(--gray-d);
  background-color: var(--gray-e);
}
.proofreadingNote-yellow {
  background-color: #ff08;
}
.proofreadingNote-green {
  background-color: #0f08;
}
.proofreadingNote-pink {
  background-color: #f4c8;
}
.proofreadingNote-blue {
  background-color: #4cf8;
}
.proofreadingNote-orange {
  background-color: #f808;
}
.proofreadingNote-red {
  background-color: #f008;
}
.proofreadingNote-closed {
  background-color: #eee8;
}
.proofreadingNote-new:before {
  position: absolute;
  content: " ";
  top: 0;
  right: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid red;
  border-bottom: 6px solid transparent;
  height: 0;
  width: 0;
}
.proofreadingNote-selected {
  outline: 1px solid var(--gray-8);
}
.proofreadingNote-notLinked {
  border: 2px dashed var(--gray-d);
}
.tEditor.showProofreadingNotes-newOnly .proofreadingNote:not(.proofreadingNote-new) {
  display: none;
}
.tEditor.showProofreadingNotes-notClosed .proofreadingNote-closed {
  display: none;
}
.tDialog_notLinkedProofreadingNoteInfo {
  border: 1px solid var(--warning);
  padding: 2px;
  color: var(--warning);
}

.tEditor_addContentRect {
  position: absolute;
  outline: 1px solid var(--gray-f);
  border: 1px solid #0af;
  background-color: #0af8;
  cursor: crosshair;
}

.issueMasterLayout_legend {
  display: inline-block;
  text-align: center;
  width: 20%;
  transform: rotate(-90deg);
  color: var(--gray-4);
}
.issueMasterLayout_input {
  width: 40px;
  text-align: right;
  margin: 0 4px;
}
.issueMasterLayout_text {
  margin: 0 4px;
}
.issueMasterLayout_dropdown {
  width: 60px;
  margin: 0;
  display: inline-block;
}

.issueMasterLayout_divider {
  margin: 20px 0;
  border-top: 1px solid var(--gray-a);
  width: 100%;
  height: 0px;
  text-align: center;
}
.issueMasterLayout_dividerInput {
  position: relative;
  width: 40px;
  text-align: center;
  top: -10px;
}

.tDialog_column {
  display: inline-block;
  vertical-align: top;
}
.tDialog_column-types {
  width: 100px;
  height: 100%;
}
.tDialog_column-params {
  position: relative;
  overflow: hidden;
  width: calc(100% - 100px);
  min-height: 200px;
  box-sizing: border-box;
  padding: 4px;
  background-color: var(--gray-e);
}
.typeButton {
  position: relative;
  padding: 4px 4px 4px 16px;
  cursor: pointer;
  border: 1px solid transparent;
}
.typeButton:hover {
  border-color: var(--gray-8);
}
.typeButton-selected {
  background-color: var(--gray-e);
}
.typeButton:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.typeButton-selected:before {
  background-color: var(--activeLED);
}


.mFloatingPanel-colorPicker {
  background-color: var(--gray-c);
  box-shadow: 4px 4px 4px #8883;
  border: 1px solid var(--gray-4);
  padding: 8px;
  box-sizing: border-box;
}
.mRadioRow-colorPickerTypeSelector {
  margin: -8px -8px 8px;
  border-radius: 0;
  border: 0 none;
}
.mRadioRow-colorPickerTypeSelector .mRadioRow_item {
  padding: 6px;
}
.colorPicker_wrapper {
  display: none;
}
.colorPicker_wrapper-swatches {
  height: calc(100% - 58px);
  overflow-y: scroll;
}
.colorPicker_wrapper-list {
  height: calc(100% - 58px);
  overflow-y: scroll;
}
.colorPicker-mixer .colorPicker_wrapper-mixer {
  display: block;
}
.colorPicker-swatches .colorPicker_wrapper-swatches {
  display: block;
}
.colorPicker-list .colorPicker_wrapper-list {
  display: block;
}
.colorPicker_footer {
  position: absolute;
  background-color: var(--gray-b);
  color: var(--gray-4);
  left: 0;
  bottom: 0;
  width: 100%;
}


.colorMixer {}
.colorMixer_column {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
}
.colorMixer_column-left {
  padding-right: 4px;
}
.colorMixer_column-right {
  padding-left: 4px;
}
.colorMixer_thumbnailsRow {
  text-align: center;
}
.colorMixer_thumbnail {
  box-sizing: border-box;
  display: inline-block;
  width: 50%;
  height: 30px;
  border: 1px solid var(--gray-b);
  position: relative;
  cursor: pointer;
}
.colorMixer_thumbnail-origin {
  border-left: 0px none;
}
.colorMixer_thumbnail:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg,
    rgba(0,0,0,0),
    rgba(0,0,0,0) 4px,
    rgba(0,0,0,0.1) 4px,
    rgba(0,0,0,0.1) 8px
  );
  background-position: center center;
}
.colorMixer_thumbnail span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.colorMixer_hslGradient {
  border: 1px solid var(--gray-b);
  margin-bottom: 8px;
  width: 150px;
  height: 150px;
  background-size: 150px 150px;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
  background-image: url(hsl.png);
}
.colorMixer_hslGradientOverlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.colorMixer_hslGradientPoint {
  position: absolute;
  width: 9px;
  height: 1px;
  background-color: black;
  outline: 1px solid white;
}
.colorMixer_hslGradientPoint:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 9px;
  left: 4px;
  top: -4px;
  background-color: black;
  outline: 1px solid white;
}
.colorMixer_hslGradientPoint:after {
  position: absolute;
  content: "";
  width: 9px;
  height: 1px;
  left: 0px;
  top: 0px;
  background-color: black;
}
.colorMixer_sliderGroup {
  margin: 4px 0;
}
.colorMixer_hexWrapper {
  text-align: right;
}
.colorMixer_hex {
  width: 54px;
  font-family: courier, monospace;
  padding: 0 2px;
  margin: -1px 0;
  text-align: right;
}

.colorSlider {
  cursor: pointer;
}
.colorSlider_part {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.colorSlider_part-label {
  width: 8px;
}
.colorSlider_part-bar {
  background-color: var(--gray-d);
  height: 8px;
  margin: 0 4px;
  width: calc(100% - 8px - 4px - 4px - 30px);
}
.colorSlider_innerBar {
  height: 100%;
  background-color: var(--gray-4);
}
.colorSlider_part-value {
  width: 30px;
  padding: 0 2px;
  margin: 0;
  text-align: right;
  line-height: 100%;
}

.colorPicker_swatchesGroup {
  line-height: 0;
  padding: 8px 2px;
}
.colorPicker_swatch {
  display: inline-block;
  vertical-align: top;
  width: 16px;
  height: 16px;
  margin: 0 1px 1px 0;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
.colorPicker_swatch:hover {
  outline: 1px solid var(--gray-f);
  border: 1px solid var(--gray-6);
}
.colorPicker_swatch:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg,
    rgba(0,0,0,0),
    rgba(0,0,0,0) 4px,
    rgba(0,0,0,0.1) 4px,
    rgba(0,0,0,0.1) 8px
  );
  background-position: center center;
}
.colorPicker_swatch span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.colorPicker_swatch-selected {
  outline: 1px solid var(--gray-0);
  border: 1px solid var(--gray-f);
}
.colorPicker_swatch-noColor span {
  background-image: linear-gradient(-45deg, white 42%, red 42%, red 58%, white 58%);
}

.colorPicker_listRow {
  padding: 2px;
  cursor: pointer;
  border: 1px solid transparent;
}
.colorPicker_listRow:hover {
  border-color: var(--gray-8);
}
.colorPicker_listRow-selected {
  background-color: var(--gray-e);
}
.colorPicker_listName {
  display: inline-block;
  vertical-align: middle;
}
.colorPicker_listSwatch {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin: 0 8px 0 0;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
.colorPicker_listSwatch:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg,
    rgba(0,0,0,0),
    rgba(0,0,0,0) 4px,
    rgba(0,0,0,0.1) 4px,
    rgba(0,0,0,0.1) 8px
  );
  background-position: center center;
}
.colorPicker_listSwatch span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
}




.simpleArticleDlg {
  width: 600px;
}
.simpleArticleDlg-withSourceTxt {
  width: 95%;
}

.simpleArticleDlg_column {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.simpleArticleDlg_column-left {
  width: calc(50% - 32px);
}
.simpleArticleDlg:not(.simpleArticleDlg-withSourceTxt) .simpleArticleDlg_column-left {
  width: 100%;
}
.simpleArticleDlg_column-middle {
  width: 64px;
  text-align: center;
}
.simpleArticleDlg:not(.simpleArticleDlg-withSourceTxt) .simpleArticleDlg_column-middle {
  display: none;
}
.simpleArticleDlg_column-right {
  width: calc(50% - 32px);
}
.simpleArticleDlg:not(.simpleArticleDlg-withSourceTxt) .simpleArticleDlg_column-right {
  display: none;
}

.simpleArticleDlg_content {
  height: calc(80vh - 13.6em);
  margin: 0 0 1px 0;
  vertical-align: baseline;
}
.simpleArticleDlg-previewInsteadOfEdit .simpleArticleDlg_rowContent {
  display: none;
}
.simpleArticleDlg_preview {
  height: calc(80vh - 13.6em);
  margin-bottom: 4px;
  overflow: scroll;
}
.simpleArticleDlg:not(.simpleArticleDlg-previewInsteadOfEdit) .simpleArticleDlg_rowPreview {
  display: none;
}

.simpleArticleDlg_previewImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  border: 1px solid var(--gray-a);
}
.simpleArticleDlg_preview-zoom2 .simpleArticleDlg_previewImage {
  width: 200%;
  height: 200%;
  cursor: grab;
}
.simpleArticleDlg_preview-zoom2.mDragged .simpleArticleDlg_previewImage {
  width: 200%;
  height: 200%;
  cursor: grabbing;
}


.simpleArticleDlg_textSource {
  font-family: courier, monospace;
  width: 100%;
  height: 80vh;
}
.simpleArticleDlg-previewInsteadOfSource .simpleArticleDlg_textSource {
  display: none;
}
.simpleArticleDlg_previewRight {
  height: 80vh;
  margin-bottom: 4px;
  overflow: scroll;
}
.simpleArticleDlg:not(.simpleArticleDlg-previewInsteadOfSource) .simpleArticleDlg_previewRight {
  display: none;
}

.simpleArticleDlg_buttonBar {
  text-align: center;
}
.simpleArticleDlg_buttonGroup-previewLeft {
  float: left;
}
.simpleArticleDlg_buttonGroup-previewRight {
  float: right;
}
.simpleArticleDlg:not(.simpleArticleDlg-withSourceTxt) .simpleArticleDlg_button-resetSourceText,
.simpleArticleDlg:not(.simpleArticleDlg-withSourceTxt) .simpleArticleDlg_buttonGroup-previewLeft,
.simpleArticleDlg:not(.simpleArticleDlg-withSourceTxt) .simpleArticleDlg_buttonGroup-previewRight {
  display: none;
}


.simpleArticleDlg_buttonWithStatus {
  padding-left: 16px;
  position: relative;
  margin-right: 0;
}
.simpleArticleDlg_buttonWithStatus:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 8px;
  width: 4px;
  height: 10px;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
  background-color: var(--passiveLED);
}
.simpleArticleDlg_buttonWithStatus-on:before {
  background-color: var(--activeLED);
}

.simpleArticleDlg_thumbnailImage {
  width: 100%;
  object-fit: contain;
  object-position: left;
  height: 10em;
  box-sizing: border-box;
  border: 1px solid var(--gray-a);
  cursor: pointer;
}



.fonts_column {
  display: inline-block;
  vertical-align: top;
  height: 100%;
}
.fonts_column-leftArea {
  width: 256px;
}
.fonts_column-rightArea {
  width: calc(100% - 256px);
  background-color: var(--gray-e);
}
.fonts_column-activeDragAndDrop {
  outline: 4px dashed var(--activeLED);
}

.fonts_toolbar {
  width: 100%;
  background-color: var(--gray-b);
}
.fonts_items {
  position: absolute;
  display: block;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: calc(100% - 28px);
}

.sourcesButton {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  padding: 4px;
  margin: 2px 4px;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: transparent;
  font-size: 12px;
  color: var(--gray-4);
}
.sourcesButton:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.sourcesButton:disabled, .sourcesButton:disabled:hover {
  color: var(--gray-8);
  border-color: transparent;
  background-color: transparent;
}
.sourcesButton_text {
  display: inline-block;
  margin-left: 4px;
}

.fonts_family {
  position: relative;
  padding: 4px 4px 4px 24px;
  cursor: pointer;
  border: 1px solid transparent;
}
.fonts_family:hover {
  border-color: var(--gray-8);
}
.fonts_family-selected {
  background-color: var(--gray-e);
}
.fonts_family-root {
  padding-left: 0px;
  font-weight: bold;
}
.fonts_family-selectable:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.fonts_family-selected:before {
  background-color: var(--activeLED);
}

.fonts_footer {
  position: absolute;
  color: var(--white);
  left: 0;
  bottom: 0;
  width: 100%;
}
.fonts_footer-hidden {
  display: none;
}
.fonts_footerButton {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  padding: 4px;
  margin: 2px 4px 1px;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: transparent;
  font-size: 12px;
  color: var(--gray-4);
}
.fonts_footerButton i {
  margin-right: 4px;
}
.fonts_footerButton:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.fonts_footerButton:disabled, .fonts_footerButton:disabled:hover {
  color: var(--gray-8);
  border-color: transparent;
  background-color: transparent;
}




.dlgActions_column {
  display: inline-block;
  vertical-align: top;
}
.dlgActions_column-types {
  width: 146px;
  height: 100%;
}
.dlgActions_column-params {
  position: relative;
  overflow: hidden;
  width: 338px;
  height: 192px;
  box-sizing: border-box;
  padding: 4px;
  background-color: var(--gray-e);
}

.actionType {
  position: relative;
  padding: 4px 4px 4px 16px;
  cursor: pointer;
  border: 1px solid transparent;
}
.actionType:hover {
  border-color: var(--gray-8);
}
.actionType-selected {
  background-color: var(--gray-e);
}
.actionType:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.actionType-selected:before {
  background-color: var(--activeLED);
}

.onlineFrame_code {
  font-family: courier, monospace;
  width: 100%;
  height: 5em;
}
.onlineFrame_preview {
  width: 100%;
  object-fit: cover; 
}
.onlineFrame_thumbnailImage {
  width: 100%;
  object-fit: contain;
  object-position: left;
  height: 80px;
  box-sizing: border-box;
  border: 1px solid var(--gray-a);
}
.onlineFrame_icons .fa {
  font-size: 20px;
}
.panel {
  box-sizing: border-box;
  height: calc(100% - 22px);
  width: 100%;
  overflow: hidden;
  position: relative;
}
.panel-hidden {
  display: none;
}
.panel-disabled:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-color: var(--gray-c);
}
.panel_header {
  display: inline-block;
  vertical-align: bottom;
  padding: 1px 2px;
  color: var(--gray-6);
  border-top: 1px solid var(--gray-6);
  border-right: 1px solid var(--gray-6);
  cursor: pointer;
}
.panel_header-first {
  border-left: 1px solid var(--gray-6);
}
.panel_header-active {
  color: var(--gray-0);
  background-color: var(--gray-c);
  padding-top: 2px;
  padding-bottom: 2px;
}

.panel_content {
  padding: 2px;
  height: calc(100% - 8px);
}

.panel-hasToolbar .panel_content {
  height: calc(100% - 25px);
}
.panel-hasFooter .panel_content {
  height: calc(100% - 32px);
}
.panel-hasToolbar.panel-hasFooter .panel_content {
  height: calc(100% - 57px);
}

.panel_content-scrollable {
  overflow-y: scroll;
}
.panel_footer {
  position: absolute;
  background-color: var(--gray-b);
  color: var(--gray-4);
  bottom: 0px;
  width: 100%;
}
.panel_footer-hidden {
  display: none;
}
.panel_footerText {
  padding: 4px 8px;
  color: var(--gray-8);
}
.panel_footerText a {
  display: inline-block;
  vertical-align: middle;
  color: var(--primary-color);
}

.panelButton {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  padding: 4px 2px;
  margin: 2px 0px 1px;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: transparent;
  font-size: 12px;
  color: var(--gray-4);
}
.panelButton:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.panelButton:disabled, .panelButton:disabled:hover {
  color: var(--gray-8);
  border-color: transparent;
  background-color: transparent;
}
.panelButton-last {
  position: absolute;
  right: 0;
}
.panelButton-hidden {
  display: none;
}
.panelButton_icon {
  display: inline-block;
  vertical-align: middle;
}
.panelButton_text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}
.panelButton-comboBorders {
  vertical-align: top;
  margin: 0;
  padding-left: 16px;
  position: relative;
}
.panelButton-comboBorders:before {
  content: " ";
  display: block;
  position: absolute;
  left: 4px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.panelButton-comboBordersOn:before {
  background-color: var(--activeLED);
}
.panelButton-block {
  display: block;
  margin: 1px 4px 1px 0;
  border: 1px solid var(--gray-6);
  padding: 2px;
  height: 18px;
  font-size: 10px;
}
.panelButton-groupMenu {
  position: absolute;
  bottom: 0;
  right: 2px;
  padding: 3px;
}
.panelButton .mButton_menu {
  border-color: transparent;
  padding: 6px 6px 4px 4px;
  vertical-align: middle;
}
.panelButton:hover .mButton_menu {
  border-color: var(--gray-8);
}
.panelButton:disabled .mButton_menu {
  border-color: transparent;
}
.panelButton-withStatus {
  padding-left: 16px;
}
.panelButton-withStatus:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 10px;
  width: 4px;
  height: 10px;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
  background-color: var(--passiveLED);
}
.panelButton-on:before {
  background-color: var(--activeLED);
}


.fourValuesBox {
  margin: 4px 0;
}
.fourValuesBox_label {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  width: 50px;
  color: var(--gray-4);
}
.fourValuesBox_values {
  display: inline-block;
  vertical-align: middle;
  width: 186px;
  height: 38px;
  position:relative;
}


.infopanel {
  font-size: 10px;
  overflow-x: scroll;
}
.infopanel_p {
  white-space: nowrap;
  margin: 0;
}
.infopanel_p span {
  color: var(--gray-a);
}
.infopanel_p-borderOnBottom {
  margin-bottom: 2px;
  border-bottom: 1px solid var(--gray-b);
  padding-bottom: 2px;
}
.infopanel b {
  color: #d00;
}


.panelArticles_article {
  display: inline-block;
}
.panelArticles_articleThumbnail {
  position: relative;
  margin: 2px;
  background-color: white;
  border: 1px solid var(--gray-a);
  font-size: 0px;
}
.layoutSize0 .panelArticles_articleThumbnail {
  width: 30px;
}
.layoutSize1 .panelArticles_articleThumbnail {
  width: 45px;
}
.layoutSize2 .panelArticles_articleThumbnail {
  width: 45px;
}
.panelArticles_articleThumbnail img {
  width: 100%;
  height: 100%;
}
.panelArticles_articleThumbnail-current {
  border-color: var(--activeLED);
  outline: 1px solid var(--activeLED);
}
.panelOverlays_overlay {
  box-sizing: border-box;
  margin: 2px;
  padding: 8px 4px;
  border: 1px solid var(--gray-a);
  color: var(--gray-4);
  cursor: pointer;
}
.panelOverlays_overlay:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.panelOverlays_overlay-current,  .panelOverlays_overlay-current:hover{
  background-color: var(--gray-f);
}




.panelOnTap_action {
  box-sizing: border-box;
  width: auto;
  padding: 4px;
  margin: 2px 4px 1px;
  border: 1px solid var(--gray-a);
  font-size: 12px;
  color: var(--gray-4);
  line-height: 1;
  cursor: pointer;
}
.panelOnTap_action:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.panelOnTap_action-selected, .panelOnTap_action-selected:hover {
  background-color: var(--gray-e);
}
.panelOnTap_actionType {
  font-size: 10px;
  color: var(--gray-8);
}
.panelOnTap_action-noAction {
  cursor: default;
  padding: 1em 4px;
}



.styleGroupSelector {
  margin: 0;
  padding: 4px 8px;
  background-color: var(--gray-b);
}
.styleGroupSelector_part {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  height: 18px;
  line-height: 18px;
}
.styleGroupSelector_part-label {
  width: 50px;
  color: var(--gray-4);
}
.styleGroupSelector_part-value {
  border: 1px solid var(--gray-1);
  background-color: var(--gray-f);
  padding: 0 4px 1px;
  width: calc(100% - 70px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}
.styleGroupSelector_part-menu {
  font-size: 70%;
  text-align: center;
  background-color: var(--gray-1);
  color: var(--gray-f);
  padding: 0 2px;
  cursor: pointer;
}
.styleGroupSelector_part-menu:after {
  content: "\f0d7";
  font-family: FontAwesome;
  padding: 0 1px 0 2px;
}

.panelFrameTypeSelector {
  margin: 0;
  padding: 4px;
  background-color: var(--gray-b);
}
.frameTypeSelector-hidden {
  display: none;
}
.panelFrameTypeSelector_part {
  display: inline-block;
  vertical-align: middle;
}
.panelFrameTypeSelector_part-label {
  width: 60px;
  color: var(--gray-4);
}
.panelFrameTypeSelector_part-selector {
  width: calc(100% - 60px);
}


.panelIntervalSelector {
  margin: 0 0 8px;
  padding: 4px;
  background-color: var(--gray-b);
}
.panelIntervalSelector-hidden {
  display: none;
}
.panelIntervalSelector_part {
  display: inline-block;
  vertical-align: middle;
}
.panelIntervalSelector_part-label {
  width: 60px;
  color: var(--gray-4);
}
.panelIntervalSelector_part-selector {
  width: calc(100% - 60px);
}

.panelOnTapTypeSelector {
  margin: 0 0 8px;
  padding: 4px;
  background-color: var(--gray-b);
}

.panelStyleSelectorGroup {
  margin: 0 0 4px;
}
.panelStyleSelector-hidden {
  display: none;
}
.panelStyleSelector_part {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  height: 18px;
  line-height: 18px;
}
.panelStyleSelector_part-label {
  width: 18px;
  color: var(--gray-4);
}
.panelStyleSelector_part-value {
  border: 1px solid var(--gray-1);
  background-color: var(--gray-f);
  padding: 0 4px 1px;
  width: calc(100% - 30px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}
.panelStyleSelector_part-menu {
  font-size: 70%;
  text-align: center;
  background-color: var(--gray-1);
  color: var(--gray-f);
  padding: 0 2px;
  cursor: pointer;
}
.panelStyleSelector_part-menu:after {
  content: "\f0d7";
  font-family: FontAwesome;
  padding: 0 1px 0 2px;
}
.panelStyleSelector_part-button {
  background-color: transparent;
  padding: 0 4px 1px;
}


.panelBorders {
  background-color: var(--gray-c);
  box-shadow: 4px 4px 4px #8883;
  border: 1px solid var(--gray-4);
}
.panelBorders_group {
  position: absolute;
}
.panelBorders_group-top {
  left: calc(50% - 100px);
  top: 0px;
  width: 200px;
}
.panelBorders_group-right {
  right: 8px;
  top: calc(50% - 30px);
  width: 100px;
  text-align: center;
}
.panelBorders_group-bottom {
  left: calc(50% - 100px);
  bottom: 8px;
  width: 200px;
}
.panelBorders_group-left {
  left: 8px;
  top: calc(50% - 30px);
  width: 100px;
  text-align: center;
}

.panelBorders_group .tin, .panelBorders_group .tin {
  display: inline-block;
  margin-right: 4px;
}
.panelBorders_group .tin:last-child, .panelBorders_group .tin:last-child {
  margin-right: 0px;
}

.panelDetailedDimensions,
.panelComponentOptions {
  background-color: var(--gray-c);
  box-shadow: 4px 4px 4px #8883;
  border: 1px solid var(--gray-4);
  padding: 4px;
}


.panelContentProperties {
  display: none;
}
.panel_content-none .panelContentProperties-none {
  display: block;
}
.panel_content-multi .panelContentProperties-multi {
  display: block;
}
.panel_content-text .panelContentProperties-text {
  display: block;
}
.panel_content-fragment .panelContentProperties-fragment {
  display: block;
}
.panel_content-image .panelContentProperties-image {
  display: block;
}
.panel_content-video .panelContentProperties-video {
  display: block;
}
.panel_content-audio .panelContentProperties-audio {
  display: block;
}
.panel_content-online .panelContentProperties-online {
  display: block;
}
.panel_content-beforeAfterImage .panelContentProperties-beforeAfterImage {
  display: block;
}
.panel_content-group .panelContentProperties-group {
  display: block;
}
.panel_content-area .panelContentProperties-area {
  display: block;
}
.panel_content-easyReading .panelContentProperties-easyReading {
  display: block;
}
.panel_content-form .panelContentProperties-form {
  display: block;
}
.panel_content-formOption .panelContentProperties-formOption {
  display: block;
}
.panel_content-component .panelContentProperties-component {
  display: block;
}

.panelContentProperties-easyReading .mGroup:first-child {
  margin-top: 10px;
}

.mRadioRow-formEditingModeSelector {
  margin: 0 0 4px 0;
  padding: 0;
}
.mRadioRow-formEditingModeSelector .mRadioRow_item {
  padding: 4px;
}

.panelProofreading_currentNoteInfo {
  width: 100%;
  border: 1px solid var(--gray-a);
  border-bottom: none;
  color: var(--gray-4);
  padding: 2px;
  box-sizing: border-box;
}
.panelProofreading_currentNoteText {
  width: 100%;
  height: 58px;
  border: 1px solid var(--gray-a);
  color: var(--gray-4);
  padding: 2px;
  box-sizing: border-box;
}

.panelTree_node {
  position: relative;
  padding-left: 8px;
}
.panelTree_node:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  border-top: 1px dotted black;
}
.panelTree_node-isHidden {
  text-decoration: line-through;
}
.alwaysShowHiddenFrames .panelTree_node-isHidden {
  display: block !important;
}

.panelTree_nodeHeader {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.panelTree_packer {
  padding: 2px 4px 0 0;
  color: var(--gray-8);
}
.panelTree_packer-isSelectable {
  color: var(--gray-0);
  cursor: pointer;
}
.panelTree_nodeThumbnail {
  width: 1.2em;
  height: 1.2em;
  object-fit: cover;
  margin-right: 2px;
  vertical-align: bottom;
}
.panelTree_nodeName {
  padding: 1px 2px;
  color: var(--gray-8);
}
.panelTree_nodeName em {
  opacity: 0.5;
}
.panelTree_nodeName-isSelectable {
  color: var(--gray-0);
  cursor: pointer;
}
.panelTree_nodeName-selected {
  background-color: var(--selecting-color);
  color: #fff;
}
.panelTree_nodeName-isWorkingGroupFrame {
  font-weight: bold;
  color: var(--gray-0);
  cursor: pointer;
}
.panelTree_nodeName-error {
  color: #d00;
}

.panelTree_nodeError {
  color: #d00;
}

.panelTree_nodeChildren {
  margin-left: 5px;
  border-left: 1px dotted black;
}
.panelTree_node-packed > .panelTree_nodeChildren {
  display: none;
}

.proofreadingNote_color-yellow {
  color: #ff0;
}
.proofreadingNote_color-green {
  color: #0f0;
}
.proofreadingNote_color-pink {
  color: #f4c;
}
.proofreadingNote_color-blue {
  color: #4cf;
}
.proofreadingNote_color-orange {
  color: #f80;
}
.proofreadingNote_color-red {
  color: #f00;
}

.selector {
  box-sizing: border-box;
  position: absolute;
  outline: 1px solid var(--selecting-color);
  pointer-events: none;
}
.selector-isGroup {
  outline-style: dashed;
}
.selector-isFragment {
  --selecting-color: #0a0;
  outline-style: dashed;
}
.selector-isEdited {
  outline-width: 2px;
}

.selector_panel {
  box-sizing: border-box;
  position: absolute;
  left: -24px;
  top: -54px;
  min-width: 120px;
  white-space: nowrap;
  outline: 1px solid var(--selecting-color);
  background-color: var(--selecting-color);
  color: #fff;
  pointer-events: none;
  padding: 0px 4px;
  pointer-events: all;
}
.selector_frameName {
  padding: 2px;
}
.selector_frameName .svgicon {
  vertical-align: top;
  margin-right: 8px;
  margin-top: 4px;
  font-size: 18px;
}
.selector_panelButton {
  padding: 0 2px;
  background-color: transparent;
  border: 0 none;
  color: #fff;
  margin: 4px;
  font-size: 15px;
}
.selector_panelButton-divLeft {
  margin-left: 4px;
  padding-left: 8px;
  border-left: 1px solid #fff8;
}

.selector_handle {
  box-sizing: border-box;
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--selecting-color);
  background-color: #fff;
  pointer-events: all;
  cursor: pointer;
}
.selector_handle-hidden {
  display: none;
}
.selector_handle-topLeft {
  left: -7px;
  top: -7px;
  cursor: nwse-resize;
}
.selector_handle-top {
  left: calc(50% - 7px);
  top: -7px;
  cursor: ns-resize;
}
.selector_handle-topRight {
  right: -7px;
  top: -7px;
  cursor: nesw-resize;
}
.selector_handle-right {
  right: -7px;
  top: calc(50% - 7px);
  cursor: ew-resize;
}
.selector_handle-bottomRight {
  right: -7px;
  bottom: -7px;
  cursor: nwse-resize;
}
.selector_handle-bottom {
  left: calc(50% - 7px);
  bottom: -7px;
  cursor: ns-resize;
}
.selector_handle-bottomLeft {
  left: -7px;
  bottom: -7px;
  cursor: nesw-resize;
}
.selector_handle-left {
  left: -7px;
  top: calc(50% - 7px);
  cursor: ew-resize;
}
.selector_handle-position {
  width: 16px;
  height: 16px;
  left: -25px;
  top: -25px;
  cursor: move;
  color: var(--selecting-color);
  font-size: 12px;
  text-align: center;
}
.selector-verticalRulerOnRight .selector_handle-position {
  left: auto;
  right: -25px;
}
.selector_handle-locked {
  background-color: var(--selecting-color);
  color: #fff;
  font-size: 10px;
  text-align: center;
}


.selector_ruler {
  box-sizing: border-box;
  position: absolute;
  outline: 1px solid var(--selecting-color);
  background-color: #fff;
  color: #fff;
  font-size: 20px;
  pointer-events: all;
}
.selector_ruler-horizontal {
  left: 0;
  top: -24px;
  width: 100%;
  height: 14px;
  background-size: 32px 4px;
  background-repeat: repeat-x;
  background-position-y: 5px;
  background-image: repeating-linear-gradient(90deg, var(--selecting-color), var(--selecting-color) 1px, #0000 1px, #0000 32px);
}
.selector_ruler-vertical {
  left: -24px;
  top: 0;
  width: 14px;
  height: 100%;
  background-size: 4px 32px;
  background-repeat: repeat-y;
  background-position-x: 5px;
  background-image: repeating-linear-gradient(0deg, var(--selecting-color), var(--selecting-color) 1px, #0000 1px, #0000 32px);
}
.selector-verticalRulerOnRight .selector_ruler-vertical {
  left: auto;
  right: -24px;
}
.selector_ruler-leftMargin {
  right: 100%;
  top: -24px;
  height: 14px;
  background-size: 32px 4px;
  background-repeat: repeat-x;
  background-position-y: 5px;
  background-image: repeating-linear-gradient(90deg, var(--selecting-color), var(--selecting-color) 1px, #0000 1px, #0000 32px);
  outline-style: dotted;
}
.selector_ruler-rightMargin {
  left: 100%;
  top: -24px;
  height: 14px;
  background-size: 32px 4px;
  background-repeat: repeat-x;
  background-position-y: 5px;
  background-image: repeating-linear-gradient(90deg, var(--selecting-color), var(--selecting-color) 1px, #0000 1px, #0000 32px);
  outline-style: dotted;
}
.selector_ruler-topMargin {
  left: -24px;
  bottom: 100%;
  width: 14px;
  background-size: 4px 32px;
  background-repeat: repeat-y;
  background-position-x: 5px;
  background-image: repeating-linear-gradient(0deg, var(--selecting-color), var(--selecting-color) 1px, #0000 1px, #0000 32px);
  outline-style: dotted;
}
.selector_ruler-bottomMargin {
  left: -24px;
  top: 100%;
  width: 14px;
  background-size: 4px 32px;
  background-repeat: repeat-y;
  background-position-x: 5px;
  background-image: repeating-linear-gradient(0deg, var(--selecting-color), var(--selecting-color) 1px, #0000 1px, #0000 32px);
  outline-style: dotted;
}
.selector-verticalRulerOnRight .selector_ruler-bottomTop {
  left: auto;
  right: -24px;
}
.selector-verticalRulerOnRight .selector_ruler-bottomMargin {
  left: auto;
  right: -24px;
}
.selector_ruler-hidden {
  display: none;
}


.selector_rulerHandle {
  position: absolute;
  pointer-events: all;
  color: var(--selecting-color);
}
.selector_rulerHandle-leftMargin {
  padding: 0 3px;
  left: -14px;
  top: -5px;
  cursor: ew-resize;
}
.selector_rulerHandle-rightMargin {
  padding: 0 3px;
  right: -14px;
  top: -5px;
  cursor: ew-resize;
}
.selector_rulerHandle-topMargin {
  left: 0;
  top: -20px;
  padding: 0 1px;
  cursor: ns-resize;
}
.selector_rulerHandle-bottomMargin {
  left: 0;
  bottom: -20px;
  padding: 0 1px;
  cursor: ns-resize;
}

.selector_innerRuler {
  background-color: var(--selecting-color);
  position: absolute;
}
.selector_innerRuler-horizontal {
  width: auto;
  height: 100%;
  background-size: 32px 4px;
  background-repeat: repeat-x;
  background-position-y: 5px;
  background-image: repeating-linear-gradient(90deg, #fff, #fff 1px, #0000 1px, #0000 32px);
}
.selector_innerRuler-vertical {
  width: 100%;
  height: auto;
  background-size: 4px 32px;
  background-repeat: repeat-y;
  background-position-x: 5px;
  background-image: repeating-linear-gradient(0deg, #fff, #fff 1px, #0000 1px, #0000 32px);
}
.selector_innerRulerHandle {
  position: absolute;
  pointer-events: all;
}
.selector_innerRulerHandle-horizontalLeft {
  padding: 0 3px;
  left: 0;
  top: -7px;
  cursor: ew-resize;
}
.selector_innerRulerHandle-horizontalRight {
  padding: 0 3px;
  right: 0;
  top: -7px;
  cursor: ew-resize;
}
.selector_innerRulerHandle-verticalTop {
  left: 0;
  top: -7px;
  padding: 0 3px;
  cursor: ns-resize;
}
.selector_innerRulerHandle-verticalBottom {
  left: 0;
  bottom: -6px;
  padding: 0 3px;
  cursor: ns-resize;
}
.selector_innerRulerHandle-hidden {
  display: none;
}

.groupSelector {
  box-sizing: border-box;
  position: absolute;
  outline: 4px dashed var(--group-color);
  pointer-events: none;
}
.groupSelector-isFragment {
  --group-color: #0a0;
}

.groupSelector_panel {
  box-sizing: border-box;
  position: absolute;
  min-width: 120px;
  background-color: var(--group-color);
  color: #fff;
  pointer-events: none;
  left: -4px;
  top: -30px;
  padding: 0px 4px;
  pointer-events: all;
}
.groupSelector_panelButton {
  padding: 0 8px;
  background-color: transparent;
  border: 0 none;
  color: #fff;
  margin: 4px;
  font-size: 15px;
}
.groupSelector_panel-hidden {
  display: none;
}
.groupSelector_variableObjectPanel {
  border-left: 1px solid #fff8;
}
.groupSelector_variableObjectPanel-hidden {
  display: none;
}

.sources_folders {
  display: inline-block;
  vertical-align: top;
  width: 256px;
  height: 100%;
  overflow-y: scroll;
}
.sources_sources {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: calc(100% - 256px);
  height: 100%;
  background-color: var(--gray-e);
  overflow-y: scroll;
}
.sources_sources .mTable {
  height: 100%;
}
.sources_sources-activeDragAndDrop {
  outline: 4px dashed var(--activeLED);
}

.srcFolder {
  position: relative;
  padding: 4px 4px 4px 16px;
  cursor: pointer;
  border: 1px solid transparent;
}
.srcFolder:hover {
  border-color: var(--gray-8);
}
.srcFolder-selected {
  background-color: var(--gray-e);
}
.srcFolder-subfolder {
  padding-left: 24px;
}
.srcFolder-root {
  border-top: 1px solid var(--gray-b);
}
.srcFolder:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.srcFolder-selected:before {
  background-color: var(--activeLED);
}
.srcFolder-subfolder:before {
  left: 14px;
}
.srcFolder-root:before {
  transition: 0.5s all;
  content: "\f0d7";
  width: auto;
  background-color: #0000;
  box-shadow: none;
  top: 5px;
  font: normal normal normal 12px/1 FontAwesome;
}
.srcGroup {
}
.srcGroup-folded .srcFolder-root:before {
  transform: rotate(-90deg);
}
.srcGroupItems {
  overflow: hidden;
}
.srcGroup-folded .srcGroupItems {
  height: 0;
}

.sources_progressBar {
  width: calc(100% - 32px);
  margin: 8px 16px;
  box-sizing: border-box;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.sources_progressBarInner {
  background-color: var(--activeLED);
  height: 100%;
  transition: 0.25s all;
}
.sources_progressInfo {
  text-align: center;
}
.sources_thumbnail {
  margin: 0 auto;
  width: 16px;
  text-align: center;
  padding: 2px;
}
.mTable-thumbnails .sources_thumbnail {
  margin-bottom: 4px;
  padding: 24px;
  width: 28px;
}
.mTable-thumbnails .sources_thumbnail i {
  font-size: 28px;
}
.styleSelector {
}
.styleSelector-hidden {
  display: none;
}

.styleSelector_item {
  box-sizing: border-box;
  display: inline-block;
  height: 52px;
  width: calc(50% - 4px);
  margin: 2px;
  padding: 4px;
  border: 1px solid var(--gray-a);
  border-radius: 0;
  background-color: transparent;
  font-size: 12px;
  color: var(--gray-4);
  overflow: hidden;
  vertical-align: top;
  position: relative;
  cursor: pointer;
}

.styleSelector_item:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.styleSelector_item-selected, styleSelector_item-selected:hover {
  background-color: var(--gray-f);
}


.styleSelector_itemSample {
  color: black;
  width: 100%;
  height: 28px;
  overflow: hidden;
  vertical-align: baseline;  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.styleSelector_itemName {
  position: absolute;
  left: 4px;
  bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 8px);
}
.styleSelector_itemOrder {
  display: none;
  
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 8px;
  background-color: var(--gray-a);
  color: var(--gray-d);
  padding: 1px 2px;
}
.styleSelector_itemShortcut {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 8px;
  background-color: var(--gray-a);
  color: var(--gray-d);
  padding: 1px 2px;
}

.styleSelector-frame .styleSelector_item {
  width: calc(100% - 4px);
  height: auto;
  padding-top: 8px;
}
.styleSelector-frame .styleSelector_itemSample {
  display: none;
}
.styleSelector-frame .styleSelector_itemName {
  position: relative;
  white-space: normal;
  left: 0;  
}


.styleSelector_redefineItemSample {
  display: inline-block;
  width: calc(50% - 16px);
  border: 1px solid var(--gray-a);
  box-sizing: border-box;
  color: black;
  height: 80px;
  overflow: hidden;
  vertical-align: middle;  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  margin: 16px 0;
  padding: 4px;
}
.styleSelector_redefineItemSampleArrow {
  display: inline-block;
  width: 30px;
  vertical-align: middle;
  text-align: center;
}


.dlgGroups_column {
  display: inline-block;
  vertical-align: top;
}
.dlgGroups_column-leftArea {
  width: 40%;
  height: 100%;
  position: relative;
}
.dlgGroups_column-groupStyles {
  position: relative;
  width: 60%;
  height: 100%;
  box-sizing: border-box;
  padding: 4px;
  background-color: var(--gray-e);
  overflow-y: scroll;
}
.dlgGroups_groups {
  overflow-y: scroll;
  height: 200px;
}
.dlgGroups_group {
  position: relative;
  padding: 4px 4px 4px 16px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dlgGroups_group:hover {
  border-color: var(--gray-8);
}
.dlgGroups_group-selected {
  background-color: var(--gray-e);
}
.dlgGroups_group:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.dlgGroups_group-selected:before {
  background-color: var(--activeLED);
}
.dlgGroups_footer {
  color: var(--white);
  width: 100%;
}
.dlgGroups_footerButton {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  padding: 4px;
  margin: 2px 4px 1px;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: transparent;
  font-size: 12px;
  color: var(--gray-4);
}
.dlgGroups_footerButton i {
  margin-right: 4px;
}
.dlgGroups_footerButton:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.dlgGroups_footerButton:disabled, .dlgGroups_footerButton:disabled:hover {
  color: var(--gray-8);
  border-color: transparent;
  background-color: transparent;
}


.toolBar {
  display: none;
  box-sizing: border-box;
  position: absolute;
  top: 0px;
  left: 320px;
  width: 160px;
  height: 100%;
  background-color: var(--gray-b);
  font-size: 12px;
}

.toolBar_toolGroup {
  width: calc(100% - 8px);
  padding: 2px;
  border-bottom: 1px solid var(--gray-a);
  margin: 2px;
}
.toolBar_toolGroup-menu {
  background-color: var(--gray-a);
}
.toolBar_toolGroup-hidden {
  display: none;
}

.toolBar_toolGroup-footer {
  position: absolute;
  border-top: 1px solid var(--gray-a);
  bottom: 0px;
  border-bottom: 0px none;
}

.toolBar_menu {
  padding: 2px;
}

.trioboLogo {
  opacity: 0.4;
  width: calc(100% - 8px);
  height: 30px;
  margin: 8px 4px 3px;
  background-image: url('triobo-bw.png');
  background-size: 133px 30px;
  background-repeat: no-repeat;
}

.toolIcon {
  box-sizing: border-box;
  border: 1px solid transparent;
  width: calc(100% - 4px);
  height: 28px;
  padding: 4px;
  margin: 2px;
  color: var(--gray-4);
  cursor: pointer;
}
.toolIcon:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.toolIcon:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.toolIcon-hidden {
  display: none;
}
.toolIcon-active, .toolIcon-active:hover {
  background-color: var(--gray-e);
}
.toolIcon-disabled, .toolIcon-disabled:hover {
  color: var(--gray-a);
  border-color: transparent;
  background-color: transparent;
  cursor: default;
}
.toolIcon .svgicon {
  fill: #d00;
}
.toolIcon-disabled .svgicon {
  fill: #888;
}

#toolCloseArticle {
  padding-top: 3px;
}
#toolCloseArticle i {
  font-size:21px;
}

.toolIcon_icon {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  font-size: 16px;  
  text-align: center;
}
.toolIcon_icon .svgicon {
  padding-bottom: 4px;
}

.toolIcon_text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

.versionNotSaved .saveOff {
  display: none;
}

.versionSaved .saveOn {
  display: none;
}

.addContent_title {
  font-weight: 200;
  font-size: 20px;
  color: var(--gray-4);
  margin: 8px 0 4px;
  padding: 4px 0 0;
  text-align: center; 
}

.addContent_column {
  display: inline-block;
  vertical-align: middle;
}
.addContent_column-verticalAligner {
  height: calc(100% - 42px);
  width: 1px;
}
.addContent_column-typeSelector {
  width: calc(100% - 190px);
}
.addContent_column-positionSelector {
  position: relative;
  width: 184px;
  height: 220px;
  border: 1px dotted var(--gray-8);
}
.addContent_positionSelector {
  position: relative;
  width: 100px;
  margin: 58px 34px 30px 40px;
  height: 100px;
  background-color: #0af4; 
  border: 1px solid #0af;
}
.addContent_containerName {
  color: var(--gray-8);
  position: absolute;
  top: -10px;
  left: 3px;
  padding: 0 2px;
  font-size: 8px;
  background-color: var(--gray-c);
}
.addContent_frameName {
  color: var(--selecting-color);
  position: absolute;
  top: -10px;
  left: 3px;
  padding: 0 2px;
  font-size: 8px;
  background-color: var(--gray-c);
}


.addContent_column-positionSelectorInnerOnly {
  border: 0px none;
}
.addContent_column-positionSelectorInnerOnly .addContent_containerName {
  display: none;
}
.addContent_column-positionSelectorInnerOnly .addContent_positionSelector {
  margin: 0px;
  width: 100%;
  height: 100%;
}

.addContent_typeButton {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  border: 1px solid transparent;
  margin: 0;
  padding: 8px;
  width: 33%;
  color: var(--gray-4);
  cursor: pointer;
  background-color: transparent;
  text-align: center;
  font-size: 11px;
}
.addContent_typeButton-fullWidth {
  width: 99%;
}
.addContent_typeButton:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-b);
}
.addContent_typeButton-selected, .addContent_typeButton-selected:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.addContent_typeButton .fa {
  display: block;
  margin-bottom: 4px;
  font-size: 21px;
}


.addContent_selectorButton {
  color: var(--gray-8);
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gray-8);
  background-color: var(--gray-f);
  cursor: pointer;
  text-align: center;
  padding-top: 5px;
}
.addContent_selectorButton:after {
  content: "\f067";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
}
.addContent_selectorButton-selected {
  background-color: var(--gray-8);
  color: var(--gray-f);
}
.addContent_selectorButton-disabled {
  background-color: var(--gray-c);
  color: var(--gray-a);
}

.addContent_selectorButton-outsideTop {
  left: calc(50% - 12px);
  top: -36px;  
}
.addContent_selectorButton-outsideBottom {
  left: calc(50% - 12px);
  bottom: -36px;  
}
.addContent_selectorButton-outsideLeft {
  left: -36px;  
  top: calc(50% - 12px);
}
.addContent_selectorButton-outsideRight {
  right: -36px;  
  top: calc(50% - 12px);
}
.addContent_selectorButton-insideTop {
  left: calc(50% - 12px);
  top: 4px;  
}
.addContent_selectorButton-insideBottom {
  left: calc(50% - 12px);
  bottom: 4px;  
}
.addContent_selectorButton-insideLeft {
  left: 4px;  
  top: calc(50% - 12px);
}
.addContent_selectorButton-insideRight {
  right: 4px;  
  top: calc(50% - 12px);
}
.addContent_selectorButton-insideText {
  left: calc(50% - 12px);
  top: calc(50% - 12px);
}
.addContent_selectorButton-insideByMouse {
  left: calc(50% - 12px);
  top: calc(50% - 12px);
}
.addContent_selectorButton-insideByMouse:after {
  content: "\f040";
}
.addContent_selectorButton-outsideByMouse {
  right: 0px;  
  bottom: -36px;  
}
.addContent_selectorButton-outsideByMouse:after {
  content: "\f040";
}



.addContent_divider {
  margin-top: 2px;
  border-top: 1px solid var(--gray-a);
}

.addContent_buttons {
  text-align: center;
}


.panelVO_state {
  margin: 2px;
  padding: 4px;
  border: 1px solid var(--gray-a);
  border-radius: 0;
  font-size: 12px;
  color: var(--gray-4);
  cursor: pointer;
  white-space: nowrap;
}
.panelVO_state:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.panelVO_state-current, panelVO_state-current:hover {
  background-color: var(--gray-e);
}
.panelVO_controlButton {
  padding: 2px 6px;
  margin: 0 0 0 -1px;
  display: none;
}
.panelVO_state:hover .panelVO_controlButton {
  display: inline-block;
}
.panelVO_titleRow {
  vertical-align: middle;
  display: block;
}
.panelVO_stateIndex {
  vertical-align: middle;
  display: inline-block;
}
.panelVO_stateThumbnail {
  vertical-align: middle;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 4px;
  object-fit: cover;
}
.panelVO_stateTitle {
  width: calc(100% - 48px);
  vertical-align: middle;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.panelVO_state:hover .panelVO_stateTitle {
  width: calc(100% - 90px);
}

.itemVersion {
  
}

.itemVersion_thumbnail {
  float:left;
  position: relative;
  background-color: white;
  border: 1px solid var(--gray-8);
  margin-right: 8px;
}
.itemVersion-0 .itemVersion_thumbnail {
  width: 30px;
  height: 45px;
}
.itemVersion-1 .itemVersion_thumbnail {
  width: 45px;
  height: 60px;
}
.itemVersion-2 .itemVersion_thumbnail {
  width: 64px;
  height: 50px;
}
.itemVersion_thumbnail img {
  width: 100%;
  height: 100%;
}
.itemVersion_name {
  font-weight: bold;
}
.itemVersion_age {
  
}

.itemVersion_ts {
  color: var(--gray-8);
}
.itemVersion_user {
  color: var(--gray-8);
}

.versionThumbnail-noThumbnail {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gray-d);
}

.versionThumbnail-noThumbnail:before {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "\f0f6";
  color: var(--gray-b);
  font: normal normal normal 15px/1 FontAwesome;
  text-align: center;
}

.versions_listOfMasterPublishedIssues {
  height: 6.5em;
  border: 1px solid var(--gray-a);
  overflow-y: scroll;
  background-color: var(--gray-e);
  padding: 2px 4px;
  margin: 8px 0 2px -92px;
}
.versions_totalOfMasterPublishedIssues {
  margin: 0 0 0 -92px;
}
.articleStatus {
  padding-left: 10px;
  position: relative;
}
.articleStatus:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0px;
  top: 2px;
  width: 4px;
  height: 10px;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.articleStatus-editing:before {
  background-color: rgb(200, 200, 200);
}
.articleStatus-proofreading:before {
  background-color: rgb(255, 128, 255);
}
.articleStatus-done:before {
  background-color: var(--activeLED);
}
.articleStatus-approved:before {
  background-color: rgb(0, 240, 0);
}

.articleIcon {
  position: absolute;
  bottom: 8px;
  right: 5px;
  padding: 2px;
  background-color: var(--secondary-color);
  color: var(--secondary-color-opposite);
}
.mTable-list .articleIcon {
  bottom: 4px;
  right: 4px;
}
.mTable-list .articleIcon .fa {
  font-size: 8px;
}
.articleIcon-useTiles {
  right: auto;
  left: 5px;
  background-color: var(--primary-color);
  color: var(--primary-color-opposite);
}
.mTable-list .articleIcon-useTiles {
  left: 4px;
}

.article_linkedArticle {
  display: block;
  cursor: pointer;
}
.article_linkedArticle:hover {
  color: var(--primary-color);
}
.article_linkedArticleArrow {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}
.article_linkedArticleText {
  display: inline-block;
  border-bottom: 1px dotted;
  padding: 1px 0;
  margin: 0 0 1px 0;
}
.mTable-thumbnails .article_linkedArticle {
  width: 100%;
}

.articleDlg {
  width: 400px;
}
.articleDlg-withSourceTxt {
  width: 1000px;
}
.articleDlg_column {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.articleDlg_column-left {
  width: calc(50% - 32px);
}
.articleDlg:not(.articleDlg-withSourceTxt) .articleDlg_column-left {
  width: 100%;
}
.articleDlg_column-middle {
  width: 64px;
  vertical-align: middle;
  text-align: center;
}
.articleDlg:not(.articleDlg-withSourceTxt) .articleDlg_column-middle {
  display: none;
}
.articleDlg_column-right {
  width: calc(50% - 32px);
}
.articleDlg:not(.articleDlg-withSourceTxt) .articleDlg_column-right {
  display: none;
}
.articleDlg_textSource {
  font-family: courier, monospace;
  width: 100%;
  height: 80vh;
}
.articleDlg_thumbnailImage {
  width: 100%;
  object-fit: contain;
  object-position: center;
  height: 15em;
  box-sizing: border-box;
  border: 1px solid var(--gray-a);
  cursor: pointer;
}

.asset_thumbnail {
  box-sizing: border-box;
  margin: 0 auto 8px;
  width: 100%;
  height: 256px;
  text-align: center;
}
.asset_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.asset_thumbnail .fa {
  font-size: 150px;
  padding-top: 50px;
}
.asset_properties {
  margin: 8px 0;
  text-align: center;
}
.asset_contentPreview {
  font-family: courier, monospace;
  border: 1px solid var(--gray-d);
  overflow: scroll;
  background-color: var(--gray-f);
  height: 100%;
  white-space: break-spaces;
}

.assetsUploader {

}
.assetsUploader-hidden {
  display: none;
}

.assetsUploader_sidebarOverview {
  position: relative;
  background-color: var(--gray-f);
  border: 1px solid var(--gray-d);
  border-radius: 3px;
  padding: 4px;
  cursor: pointer;
}
.assetsUploader_sidebarOverview:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.assetsUploader_sidebarOverview:before {
  position: absolute;
  content: "\f054";
  top: 10px;
  right: 8px;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 21px;
  color: var(--gray-4);
}

.assetsUploader_overviewButton {
  float: right;
  width: 32px;
  height: 32px;
  padding: 5px 3px 3px 5px;
  margin: 0 0 0 4px;
  border: 1px solid transparent;
  font-size: 14px;
  background-color: transparent;
  text-align: center;
  color: var(--gray-4);
}


.assetsUploader_overviewProgressWrapper {
  box-sizing: border-box;
  width: calc(100% - 30px);
  height: 8px;
  background-color: var(--gray-e);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
}
.assetsUploader_sidebarOverview-assetsReady .assetsUploader_overviewProgressWrapper {
  display: none;
}
.assetsUploader_overviewProgress {
  background-color: var(--activeLED);
  height: 100%;
}
.assetsUploader_overviewStatus {
  width: calc(100% - 36px);
  margin-bottom: 4px;
  text-align: center;
}
.assetsUploader_sidebarOverview-assetsReady .assetsUploader_overviewStatus  {
  margin: 8px 0;
}
.mTable_pdfRenderMode {
  display: inline-block;
  vertical-align: top;
  padding: 2px;
  margin-right: 2px;
  font-size: 80%;
  background-color: var(--gray-a);
  color: var(--gray-f);
}

.eshopCategory_listOfTickets {
  margin: -8px;
  height: 100%;
  background-color: var(--gray-e);
}
.eshopCategory_listOfTickets .mTable {
  height: 100%;
}

.eshopItemSource_thumbnail {
  background: repeating-linear-gradient(-45deg,
    rgba(0,0,0,0),
    rgba(0,0,0,0) 4px,
    rgba(0,0,0,0.1) 4px,
    rgba(0,0,0,0.1) 8px
  );
  width: 80px;
  height: 80px;
  scroll-snap-align: end;
  border: 1px solid var(--gray-a);
  margin-right: 4px;
  box-sizing: border-box;
}

.eshopItemSource_thumbnail img {
  object-fit: cover;
}

.eshopItem_onSaleLabel {
  display: inline-block;
  padding: 0.25em;
  font-size: 70%;
  background-color: red;
  color: white;
  margin-right: 0.25em;
}

.issueAvailability {
  padding-left: 10px;
  position: relative;
}
.issueAvailability:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0px;
  top: 2px;
  width: 4px;
  height: 10px;
  background-color: var(--activeLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.issueAvailability-paid:before {
  background-color: var(--warningLED);
}
.issueAvailability-locked:before {
  background-color: rgb(255, 128, 255);
}
.issueAvailability-hidden:before {
  background-color: rgb(128, 128, 128);
}

.issueFullTitle_title {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 4px;
}
.issueFullTitle_flag {
  display: inline-block;
  vertical-align: bottom;
}

.issue_listOfArticles {
  margin: -8px;
  height: 100%;
  background-color: var(--gray-e);
}
.issue_listOfArticles .mTable {
  height: 100%;
}

.issue_pdfPreviewWrapper {
  box-sizing: border-box;
  text-align: center;
  background-color: var(--gray-f);
  border: 1px solid var(--gray-a);
  height: 200px;
  width: 100%;
  padding: 8px;
}
.issue_pdfPreview {
  height: 100%;
  width: 100%;
  object-fit: contain;
}


.issue_sidebarStatus {
  position: relative;
  background-color: var(--gray-f);
  border: 1px solid var(--gray-d);
  border-radius: 3px;
  overflow: hidden;
}

.sidebarIssueStatus {
  padding: 6px 4px 6px 16px;
  position: relative;
}
.sidebarIssueStatus-outdated {
  background-color: #fa04;
}
.sidebarIssueStatus-publishing {
  background-color: #fa04;
}
.sidebarIssueStatus:before {
  content: " ";
  display: block;
  position: absolute;
  left: 4px;
  top: 6px;
  width: 8px;
  height: calc(100% - 12px);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.sidebarIssueStatus-current:before {
  background-color: var(--activeLED);
}
.sidebarIssueStatus-outdated:before {
  background-color: var(--warningLED);
}
.sidebarIssueStatus-prepared:before {
  background-color: rgb(0, 128, 0);
}
.sidebarIssueStatus-publishing:before {
  background: repeating-linear-gradient(45deg, #fa0, #fa0 8px, #fff8 8px, #fff8 16px);
  background-size: 24px 24px;
  animation: candybar 0.5s infinite linear;
}
.sidebarIssueStatus-importing:before {
  background: repeating-linear-gradient(45deg, #0aa, #0aa 8px, #fff8 8px, #fff8 16px);
  background-size: 24px 24px;
  animation: candybar 0.5s infinite linear;
}
.sidebarIssueStatus-copying:before {
  background: repeating-linear-gradient(45deg, #0aa, #0aa 8px, #fff8 8px, #fff8 16px);
  background-size: 24px 24px;
  animation: candybar 0.5s infinite linear;
}
.sidebarIssueStatus-working:before {
  background: repeating-linear-gradient(45deg, #0aa, #0aa 8px, #fff8 8px, #fff8 16px);
  background-size: 24px 24px;
  animation: candybar 0.5s infinite linear;
}
.sidebarIssueStatus-notPublished {
  color: var(--gray-a);
}
.sidebarIssueStatus-notPublished:before {
  background: repeating-linear-gradient(45deg, #f008, #f008 2px, #ffff 2px, #ffff 8px);
  background-size: 12px 12px;
  background-position: 0 2px;
}

.sidebarIssueStatus-tr {
  border-top: 1px solid var(--gray-d);
  font-size: var(--font-size-small);
}
.sidebarIssueStatus-tr:before {
  top: 4px;
}

.sidebarIssueStatus b {
  font-weight: bold;
}
.sidebarIssueStatus a {
  color: var(--primary-color);
  border-bottom: 1px dotted var(--primary-color);
  cursor: pointer;
}
.sidebarIssueStatus a.disabled {
  color: var(--gray-8);
  border-bottom: none;
  cursor: auto;
}
.sidebarIssueStatus .mButton {
  float: right;
  margin: 4px 2px;
  padding: 6px 8px;
  border-radius: 3px;
  border: 1px solid var(--gray-d);
  background-color: var(--gray-e);
}
.sidebarIssueStatus .mButton:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.sidebarIssueStatus .mButton .mButton_menu {
  border-left-color: var(--gray-d);
  padding: 6px 4px 6px 4px;
  margin: -6px -8px -6px 8px;
}
.sidebarIssueStatus .mButton:hover .mButton_menu {
  border-left-color: var(--gray-8);
}
.sidebarIssueStatus-tr .mButton {
  padding: 4px 8px;
}
.sidebarIssueStatus-tr .mButton .mButton_menu {
  padding: 4px 4px 4px 4px;
  margin: -4px -8px -4px 8px;
}


.sidebarIssueStatus_progress {
  width: calc(100% - 40px);
  height: 2px;
  background-color: #8882;
}
.sidebarIssueStatus_progressInner {
  height: 100%;
  background-color: var(--primary-color);
}
.sidebarIssueStatus-publishing .sidebarIssueStatus_progressInner {
  background-color: #fa0;
}

.itemSourcesManager_foldersWrapper {
  display: inline-block;
  vertical-align: top;
  width: 256px;
  height: 100%;
  overflow-y: scroll;
}
.itemSourcesManager_sourcesWrapper {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: calc(100% - 256px);
  height: 100%;
  background-color: var(--gray-e);
  overflow-y: scroll;
}
.itemSourcesManager_sourcesWrapper-activeDragAndDrop {
  outline: 4px dashed var(--activeLED);
}



.itemSourcesManager_folder {
  position: relative;
  padding: 4px 4px 4px 16px;
  cursor: pointer;
  border: 1px solid transparent;
}
.itemSourcesManager_folder:hover {
  border-color: var(--gray-8);
}
.itemSourcesManager_folder-selected {
  background-color: var(--gray-e);
}
.itemSourcesManager_folder-subfolder {
  padding-left: 24px;
}
.itemSourcesManager_folder-root {
  border-top: 1px solid var(--gray-b);
}
.itemSourcesManager_folder:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.itemSourcesManager_folder-selected:before {
  background-color: var(--activeLED);
}

.itemsInFolders_leftPart {
  display: inline-block;
  vertical-align: top;
  width: 256px;
  height: 99%;
}
.itemsInFolders_folderSelector {
}
.itemsInFolders_folders {
  position: relative;
  height: calc(100% - 32px);
  overflow-y: scroll;
}
.itemsInFolders_rightPart {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 256px);
  height: 99%;
  background-color: var(--gray-e);
}
.itemsInFolders_selector {
}
.itemsInFolders_items {
  position: relative;
  height: calc(100% - 28px);
  overflow-y: auto;
}
.itemsInFolders_items .mTable {
  height: 100%;
}
.itemsInFolders_items-activeDragAndDrop {
  outline: 4px dashed var(--activeLED);
}

.itemFolder {
  position: relative;
  padding: 4px 4px 4px 16px;
  cursor: pointer;
  border: 1px solid transparent;
}
.itemFolder:hover {
  border-color: var(--gray-8);
}
.itemFolder-selected {
  background-color: var(--gray-e);
}
.itemFolder:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 6px;
  width: 4px;
  height: 10px;
  background-color: var(--passiveLED);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.itemFolder-selected:before {
  background-color: var(--activeLED);
}


.member_addressRow-company {
  display: none;
}
.member_addressDialog-useCompany .member_addressRow-company {
  display: block;
}

.member_addressInputsRow {
  position: relative;
  margin: 0;
  padding: 0;
}
.memberAddressInputRow_item {
  display: inline-block;
  margin: 0;
}
.memberAddressInputRow_item-DIC {
  width: calc(100% - 4em - 1px);
}
.memberAddressInputRow_item-VIES {
  width: 4em;
  padding: 2px 4px;
  line-height: 15px;
  margin-left: 1px;
}
.memberAddressInputRow_item-countryCode {
  width: 48px;
}
.memberAddressInputRow_item-zip {
  width: 54px;
  margin-left: 1px;
}
.memberAddressInputRow_item-city {
  width: calc(100% - 104px);
  margin-left: 1px;
}

.mFolders-memberFolders .mFolders_itemsWrapper {
  width: 15%;
}
.mFolders-memberFolders .mFolders_contentsWrapper {
  width: 85%;
}
.mFolders-memberFolders .mFoldersItem-selected {
  background-color: transparent;
}


.memberSubscriptionGraph {
  width: 100%;
  border: 1px solid var(--gray-a);
  overflow-x: scroll;
  margin: 16px 0;
}
.memberSubscriptionGraph_inner {
  position: relative;
  padding: 16px 0 32px;
}
.memberSubscriptionGraph_channelGraph {
  box-sizing: border-box;
  height: 24px;
  padding: 4px 2px;
  position: relative;
  border-bottom: 1px solid var(--gray-c);
}
.memberSubscriptionGraph_channelGraph-D {
  border-top: 1px solid var(--gray-c);
}
.memberSubscriptionGraph_bar {
  box-sizing: border-box;
  position: absolute;
  border: 1px solid var(--gray-a);
  height: 1.3em;
  font-size: 9px;
  text-align: center;
  overflow: hidden;
}
.memberSubscriptionGraph_axis {
  box-sizing: border-box;
  position: absolute;
  width: 100px;
}
.memberSubscriptionGraph_axis-today {
  border-left: 1px solid red;
  top: 0;
  height: calc(100% - 32px);
}
.memberSubscriptionGraph_axis-month {
  border-left: 1px solid var(--gray-c);
  bottom: 0;
  height: calc(100% - 16px);
}
.memberSubscriptionGraph_axis-year {
  border-left: 1px solid var(--gray-8);
}

.memberSubscriptionGraph_axis span {
  position: absolute;
  left: 0;
  padding: 0 2px;
}
.memberSubscriptionGraph_axis-today span {
  background-color: red;
  color: white;
}
.memberSubscriptionGraph_axis-month span {
  bottom: 0;
}

.mFolders-menuItemTarget .mFolders_itemsWrapper {
  width: 30%;
}
.mFolders-menuItemTarget .mFolders_contentsWrapper {
  width: 70%;
  height: 200px;
}
.mFolders-menuItemTarget .mFoldersContent {
  box-sizing: border-box;
  padding: 4px;
}
.mFolders-menuItemTarget .mFoldersContent-selected {
  background-color: var(--gray-e);
  height: 100%;
}

.tDialog-menuItemProperties {
  width: 564px;
}

.mRadioRow-menuItemIcons {
  flex-wrap: wrap;
}
.mRadioRow-menuItemIcons .mRadioRow_item {
  flex: 1 0 1.8em;
  margin-bottom: -1px;
  margin-right: -1px;
  border: 0;
  border-right: 1px solid var(--gray-c);
  border-bottom: 1px solid var(--gray-c);
}

.order_totalAmountRow {
  font-weight: bold;
  padding: 8px 4px;
  background-color: var(--gray-b);
  border-radius: 3px;
}
.publication_listOfIssues {
  margin: -8px;
  height: 100%;
  background-color: var(--gray-e);
}
.publication_listOfIssues .mTable {
  height: 100%;
}

.publication_sidebarStatus {
  position: relative;
  background-color: var(--gray-f);
  border: 1px solid var(--gray-d);
  border-radius: 3px;
}

.publicationStatus {
  padding: 6px 4px 6px 16px;
  position: relative;
}
.publicationStatus-outdated {
  background-color: #fa04;
}
.publicationStatus-publishing {
  background-color: #fa04;
}
.publicationStatus:before {
  content: " ";
  display: block;
  position: absolute;
  left: 4px;
  top: 6px;
  width: 8px;
  height: calc(100% - 12px);
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.publicationStatus-small {
  background-color: transparent;
}
.publicationStatus-small:before {
  left: 0px;
  top: 10px;
  width: 4px;
  height: 10px;
}
.publicationStatus-current:before {
  background-color: var(--activeLED);
}
.publicationStatus-outdated:before {
  background-color: var(--warningLED);
}
.publicationStatus-prepared:before {
  background-color: rgb(0, 128, 0);
}
.publicationStatus-publishing:before {
  background: repeating-linear-gradient(45deg, #fa0, #fa0 8px, #fff8 8px, #fff8 16px);
  background-size: 24px 24px;
  animation: candybar 0.5s infinite linear;
}
@keyframes candybar {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 24px;
  }
}

.publicationStatus-tr {
  border-top: 1px solid var(--gray-d);
  font-size: var(--font-size-small);
}
.publicationStatus-tr:before {
  top: 4px;
}

.publicationStatus b {
  font-weight: bold;
}
.publicationStatus a {
  color: var(--primary-color);
  border-bottom: 1px dotted var(--primary-color);
  cursor: pointer;
}
.publicationStatus a.disabled {
  color: var(--gray-8);
  border-bottom: none;
  cursor: auto;
}
.publicationStatus .mButton {
  float: right;
  margin: 4px 2px;
  padding: 15px 8px;
  border-radius: 3px;
  border: 1px solid var(--gray-d);
  background-color: var(--gray-e);
}
.publicationStatus .mButton:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.publicationStatus .mButton .mButton_menu {
  border-left-color: var(--gray-d);
  padding: 5px 5px 6px 4px;
  margin: -5px -9px -6px 7px;
}
.publicationStatus .mButton:hover .mButton_menu {
  border-left-color: var(--gray-8);
}
.publicationStatus-tr .mButton {
  padding: 4px 8px;
}



.itemStatus {
  line-height: 0.8;
  margin: -2px 0;
}
.itemStatus_text {
}
.itemStatus_text-error {
  color: #d00;
}
.itemStatus_text-inQueue {
  color: var(--gray-b);
  text-align: right;
}
.itemStatus_progress {
  display: inline-block;
  box-sizing: border-box;
  height: 6px;
  border: 1px solid var(--gray-b);
  position: relative;
  width: calc(100% - 32px);
}
.itemStatus_progress div {
  background-color: var(--activeLED);
  height: 100%;
}
.itemStatus_percents {
  display: inline-block;
  width: 32px;
  text-align: right;
  color: var(--gray-b);
}
.itemStatus_published {
  padding-left: 10px;
  position: relative;
}
.itemStatus_published:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0px;
  top: 4px;
  width: 4px;
  height: 10px;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.itemStatus_published-current:before {
  background-color: var(--activeLED);
}
.itemStatus_published-outdated:before {
  background-color: var(--warningLED);
}
.itemStatus_published-prepared:before {
  background-color: rgb(0, 128, 0);
}

.publisher_listOfForms {
  height: calc(100% - 12px);
  background-color: var(--gray-e);
}
.publisher_listOfForms .mTable {
  height: 100%;
}

.mFolders-purchaseType .mFolders_itemsWrapper {
  width: 30%;
}
.mFolders-purchaseType .mFolders_contentsWrapper {
  width: 70%;
}
.mFolders-purchaseType .mFoldersItem-selected {
  background-color: transparent;
}
.readersZone_listOfSubscribers {
  margin: -8px;
  height: 100%;
  background-color: var(--gray-e);
}
.readersZone_listOfSubscribers .mTable {
  height: 100%;
}


.mFolders-rzFolders .mFolders_itemsWrapper {
  width: 20%;
  padding-right: 8px;
}
.mFolders-rzFolders .mFolders_contentsWrapper {
  width: 80%;
}
.mFolders-rzFolders .mFolders_contentsWrapper .ted {
  height: 300px
}
.mFolders-rzFolders .mFoldersItem-selected {
  background-color: transparent;
}
.rzCommunicationPreferences_mailPreview {
  width: 100%;
  min-height: 503px;
  color: var(--gray-0);
  background-color: var(--gray-f);
  border: 1px solid var(--gray-0);
  box-sizing: border-box;
  padding: 24px;
  pointer-events: none;
  box-shadow: 4px 4px 2px var(--gray-0-50);
}


.extVouchersPreview {
  border: 1px solid var(--gray-a);
  background-color: var(--gray-f);
  font-family: courier, monospace;
  overflow-y: scroll;
  min-height: 200px;
  max-height: 60vh;
  padding: 0.75em 1em;
}
.extVouchersPreview_row-ignored {
  opacity: 0.25;
  text-decoration: line-through;
}


.importedMembersPreview {
  border: 1px solid var(--gray-a);
  background-color: var(--gray-f);
  overflow-y: scroll;
  min-height: 200px;
  max-height: 60vh;
  padding: 0.75em 1em;
}
.importedMembersPreview_row-ignored .importedMembersPreview_cell-login {
  opacity: 0.25;
  text-decoration: line-through;
}
.importedMembersPreview_cell-login {
  font-family: courier, monospace;
}
.importedMembersPreview_cell-status {
  background-color: var(--primary-color);
  color: var(--primary-color-opposite);
  border-radius: 3px;
  font-size: 80%;
  padding: 2px;
  margin-left: 1em;
}

.statementMonthBilling {
  border: 1px solid var(--gray-a);
  margin: 16px 0;
}

.statementMonthBilling tr {
}
.statementMonthBilling tr.totalRow {
  background-color: rgba(0, 0, 0, 0.05);
}

.statementMonthBilling th {
  padding: 4px 8px;
  border: 1px solid var(--gray-a);
  font-weight: bold;  
}

.statementMonthBilling td {
  padding: 4px 8px;
  border: 1px solid var(--gray-a);
}
.statementMonthBilling td.right {
  text-align: right;
}


.statistics_wrapper {
  height: 100%;
}
.statistics_wrapper .tGraph-statistics {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 75%;
  height: 240px;
}
.statistics_infoDiv {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 25%;
}
@media screen and (max-width: 600px) {
  .tGraph-statisticsView {
    display: block;
    width: 100%;
  }
  .statistics_infoDiv {
    display: block;
    width: 100%;
  }
}

.issueMaster_listOfFragments {
  height: calc(100% - 12px);
    background-color: var(--gray-e);
}
.issueMaster_listOfFragments .mTable {
  height: 100%;
}

.mDialog:not(.mDialog-fullscreen) .mTable {
  border: 1px solid var(--gray-d);
  border-radius: 3px;
}
.mDialog-fullscreen .mTable {
  border-bottom: 1px solid var(--gray-d);
}

.mDialog:not(.mDialog-fullscreen) .mTable_toolbar,
.mDialog:not(.mDialog-fullscreen) .mTable_pager {
  background-color: var(--gray-e8);
}

.mDialog .mTable_tableWrapper {
  max-height: calc(100vh - 172px);
  width: 100%;
}
.mDialog .mTable_tableBodyWrapper {
  max-height: calc(100vh - 197px);
}

.mDialog-fullscreen .mTable_tableWrapper {
  height: calc(100vh - 264px) !important;
}

.mDialog-fullscreen .mTable-statisticsPublishers,
.mDialog-fullscreen .mTable-statisticsTime {
  height: 100%;
}

.mDialog-fullscreen .mTable-statisticsTime .mTable_tableWrapper,
.mDialog-fullscreen .mTable-statisticsPublishers .mTable_tableWrapper {
  height: calc(100% - 63px - 258px);
}

.mDialog-fullscreen .mTable-countOfSubscribers .mTable_tableWrapper {
  max-height: calc(100vh - 207px - 179px);
}
.mDialog-fullscreen .mTable-countOfSubscribers .mTable_tableBodyWrapper {
  max-height: calc(100vh - 197px - 214px);
}


.darkTheme .mTable_tr:nth-child(odd) {
  background-color: var(--gray-d);
}

.mTable_tr-selected:nth-child(even) {
  background-color: var(--primary-color);
}
.mTable_tr-selected:nth-child(odd) {
  background-color: var(--primary-color);
}
.darkTheme .mTable_tr-selected:nth-child(odd) {
  background-color: var(--primary-color);
}

.mTable-list .mTable_tr.mTable-subscriptionLengths_tr {
  height: 25px;
}
.mTable-subscriptionLengths_tr .mInput, .mTable-subscriptionLengths_tr .mDropdown {
  margin-bottom: 0px;
}

.mTable-publications_td-logo {
  font-size: 0;
  padding: 1px;
}
.mTable-publications_td-logo img {
  box-sizing: border-box;
  object-fit: contain;
}
.mTable-list .mTable-publications_td-logo img {
  width: 48px;
  height: 24px;
}
.mTable-thumbnails .mTable-publications_td-logo img {
  width: 100px;
  height: 50px;
  display: block;
  margin: 2px;
}
.mTable-thumbnails .mTable-publications_td-description {
  display: none;
}
.mTable-thumbnails .mTable-publications_td-countOfIssues {
  display: none;
}
.mTable-thumbnails .mTable-publications_td-notes {
  display: none;
}
.mTable-thumbnails .mTable-publications_td-license {
  font-size: 75%;
  background-color: var(--gray-a);
  color: var(--gray-f);
  width: 60%;
  line-height: 1;
  white-space: normal;
  text-align: center;
}

.mTable-assetsUploader_td-id {
  text-align: right;
}
.mTable-assetsUploader_td-preview {
  font-size: 0;
  padding: 1px;
  text-align: center;
}
.mTable-assetsUploader_td-preview img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-assetsUploader_td-preview img {
  width: 24px;
  height: 24px;
}
.mTable-thlist .mTable-assetsUploader_td-preview img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.mTable-thumbnails .mTable-assetsUploader_td-preview img {
  border: 1px solid var(--gray-d);
  width: 100%;
  display: block;
  margin: 2px 0;
}
.mTable-thlist .mTable-assetsUploader_td-preview .fa {
  margin: 8px 0;
  font-size: 48px;
}
.mTable-thumbnails .mTable-assetsUploader_td-preview .fa {
  font-size: 120px;
}


.mTable-issues_td-contextMenu {
  cursor: pointer;
}
.mTable-issues_td-coverId {
  font-size: 0;
  padding: 1px;
  text-align: center;
}
.mTable-thlist .mTable-issues_td-coverId .fa {
  margin: 8px 0;
  font-size: 48px;
}
.mTable-thumbnails .mTable-issues_td-coverId .fa {
  font-size: 120px;
}
.mTable-issues_td-coverId img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-issues_td-coverId img {
  width: 24px;
  height: 24px;
}
.mTable-thlist .mTable-issues_td-coverId img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.mTable-thumbnails .mTable-issues_td-coverId {
}
.mTable-thumbnails .mTable-issues_td-coverId img {
  border: 1px solid var(--gray-d);
  width: 100%;
  display: block;
  margin: 2px 0;
}
.mTable-issues_td-coverId p {
  text-align: center;
  color: var(--secondary-color);
  margin: -4px 0;
}
.mTable-thlist .mTable-issues_td-coverId .folderThumbnail {
  height: 32px;
  width: 48px;
  margin: 16px auto;
}
.mTable-thlist .mTable-issues_td-coverId .folderThumbnail:after {
  height: 3px;
  top: -3px;
}
.mTable-list .mTable-issues_td-coverId .folderThumbnail {
  margin: 2px 0px 2px;
  height: 10px;
}
.mTable-list .mTable-issues_td-coverId .folderThumbnail:after {
  height: 3px;
  top: -3px;
}
.mTable-thumbnails .mTable-issues_td-coverId .folderThumbnail {
  margin: 20px 0px 2px;
  height: 70px;
}
.mTable-thumbnails .mTable-issues_td-coverId .flag {
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin: auto;
}
.mTable-thumbnails .mTable-issues_td-coverId .flagWrapper {
  position: relative;
}
.mTable-thumbnails .mTable-issues_td-coverId .flagWrapper i {
  margin: 4px 0 8px;
  font-size: 80px;
}
.mTable-thlist .mTable-issues_td-coverId .flag {
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin: auto;
}
.mTable-thlist .mTable-issues_td-coverId .flagWrapper {
  position: relative;
}
.mTable-thlist .mTable-issues_td-coverId .flagWrapper i {
  margin: 4px 0 8px;
  font-size: 40px;
}
.mTable-list .mTable-issues_td-coverId .flagWrapper i {
  display: none;
}
.mTable_tr-folder .mTable-issues_td-title {
  font-weight: bold;
}
.mTable_tr-folder .mTable-issues_td-title {
  font-weight: bold;
}
.mTable-list .mTable-issues_td-date {
  text-align: right;
}
.mTable-list .mTable-issues_td-price {
  text-align: right;
}
.mTable-thumbnails .mTable_tr-folder .mTable-issues_td-title,
.mTable-thumbnails .mTable_tr-folder .mTable-issues_td-date {
  padding-bottom: 1.65em;
  line-height: 120%;
}
.mTable-thumbnails .mTable-issues_td-description {
  display: none;
}
.mTable-thumbnails .mTable-issues_td-productId {
  display: none;
}
.mTable-thumbnails .mTable-issues_td-notes {
  display: none;
}
.mTable-thumbnails .mTable-issues_td-tags {
  display: none;
}
.mTable-thumbnails .mTable-issues_td-availability {
  display: none;
}
.mTable-thumbnails .mTable-issues_td-visibility {
  display: none;
}
.mTable-thumbnails .mTable-issues_td-url {
  display: none;
}

.mTable-thumbnails .mTable_tr {
  vertical-align: bottom;
}
.mTable-thumbnails .mTable_td-void,
.mTable-thumbnails .mTable_td-specialLastColumn {
  display: none;
}


.mTable-forms_td-countOfResponses {
  text-align: right;
}

.mTable-orders_td-amount,
.mTable-membersOrders_td-amount,
.mTable-memberCart_td-quantity,
.mTable-memberCart_td-base,
.mTable-memberCart_td-VATRate,
.mTable-memberCart_td-amount {
  text-align: right;
}
.mTable-orders_td-status i {
  width: 1em;
  text-align: center;
}

.mTable_td-paymentStatus .fa-check {
  color: #0a0;
}
.mTable_td-paymentStatus .fa-times {
  color: #d00;
}
.mTable_td-paymentStatus .fa-exclamation-circle {
  color: #f70;
}
.mTable_td-paymentStatus .fa-plus-circle {
  color: #0ad;
}

.mTable_td-packageStatus .fa-clock-o {
  color: #aaa;
}
.mTable_td-packageStatus .fa-gift {
  color: #f70;
}
.mTable_td-packageStatus .fa-thumbs-o-up,
.mTable_td-packageStatus .fa-paper-plane-o {
  color: #0a0;
}

.mTable-members_td-countOfPurchases {
  text-align: right;
}
.mTable-members_td-billingAddress_companyName {
  border-left: 1px solid var(--gray-d);
}
.mTable-members_td-DeliveryAddress_companyName {
  border-left: 1px solid var(--gray-d);
}

.mTable-subscribers_td-login {
  border-left: 1px solid var(--gray-d);
}
.mTable-subscribers_td-validFrom {
  text-align: right;
}
.mTable-subscribers_td-validTo {
  text-align: right;
}
.mTable-subscribers_td-billingAddress_companyName {
  border-left: 1px solid var(--gray-d);
}
.mTable-subscribers_td-DeliveryAddress_companyName {
  border-left: 1px solid var(--gray-d);
}
.mTable-members_tr-disabled {
  color:#ddd;
}

.mTable-publicationIssues_td-contextMenu {
  cursor: pointer;
}
.mTable-publicationIssues_td-coverId {
  font-size: 0;
  padding: 1px;
}
.mTable-publicationIssues_td-coverId img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-publicationIssues_td-coverId img {
  width: 24px;
  height: 24px;
}
.mTable-thumbnails .mTable-publicationIssues_td-coverId img {
  border: 1px solid var(--gray-d);
  width: 100%;
  display: block;
  margin: 2px 0;
}
.mTable-publicationIssues_td-date {
  text-align: right;
}
.mTable-publicationIssues_td-languages {
  white-space: nowrap;
  text-overflow: clip;
  overflow: hidden;
}
.mTable-thumbnails .mTable-publicationIssues_td-languages {
  position: absolute;
  display: block;
  width: auto;
  top: -2px;
  right: 2px;
}
.mTable-thumbnails .mTable-publicationIssues_td-description {
  display: none;
}
.mTable-thumbnails .mTable-publicationIssues_td-productId {
  display: none;
}
.mTable-thumbnails .mTable-publicationIssues_td-notes {
  display: none;
}
.mTable-thumbnails .mTable-publicationIssues_td-tags {
  display: none;
}
.mTable-thumbnails .mTable-publicationIssues_td-availability {
  display: none;
}


.mTable-issueArticles_td-contextMenu {
  cursor: pointer;
}
.mTable-issueArticles_td-coverId {
  font-size: 0;
  padding: 1px;
}
.mTable-issueArticles_td-coverId img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-issueArticles_td-versionId img {
  width: 24px;
  height: 24px;
}
.mTable-thumbnails .mTable-issueArticles_td-versionId img {
  border: 1px solid var(--gray-d);
  width: 100%;
  display: block;
  margin: 2px 0;
}
.mTable-thumbnails .mTable-issueArticles_td-description {
  display: none;
}
.mTable-thumbnails .mTable-issueArticles_td-notes {
  display: none;
}



.mTable-articles_td-contextMenu {
  cursor: pointer;
}
.mTable-thumbnails .mTable-articles_td-contextMenu {
  float: left;
  width: 33%;
}
.mTable-articles_td-ord {
  text-align: right;
}
.mTable-thumbnails .mTable-articles_td-ord {
  float: right;
  width: 33%;
}

.mTable-articles_td-versionId {
  font-size: 0;
  padding: 0;
  margin: 0;
}
.mTable-thumbnails .mTable-articles_td-versionId {
  padding: 0;
  margin: 0;
}
.mTable-articles_td-versionId img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-articles_td-versionId img {
  width: 24px;
  height: 24px;
}
.mTable-thumbnails .mTable-articles_td-versionId img {
  border: 1px solid var(--gray-d);
  width: 100%;
  display: block;
  margin: 2px 0;
}
.mTable-thumbnails .mTable-articles_td-description {
  display: none;
}
.mTable-thumbnails .mTable-articles_td-notes {
  display: none;
}
.mTable-thumbnails .mTable-articles_td-url {
  display: none;
}
.mTable-thumbnails .mTable-articles_tr-twoUp {
  width: 224px;
}

.mTable-simpleArticles_td-contextMenu {
  cursor: pointer;
}
.mTable-thumbnails .mTable-simpleArticles_td-contextMenu {
  float: left;
  width: 33%;
}
.mTable-simpleArticles_td-ord {
  text-align: right;
}
.mTable-thumbnails .mTable-simpleArticles_td-ord {
  float: right;
  width: 33%;
}
.mTable-simpleArticles_td-versionId {
  font-size: 0;
  padding: 1px;
}
.mTable-simpleArticles_td-versionId img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-simpleArticles_td-versionId img {
  width: 24px;
  height: 24px;
}
.mTable-thumbnails .mTable-simpleArticles_td-versionId img {
  border: 1px solid var(--gray-d);
  width: 100%;
  height: 70px;
  display: block;
  margin: 2px 0;
}
.mTable-thumbnails .mTable-simpleArticles_td-description {
  display: none;
}
.mTable-thumbnails .mTable-simpleArticles_td-notes {
  display: none;
}

/* fragments */
.mTable-thumbnails .mTable-fragments_tr {
  width: 240px;
  vertical-align: bottom;
}
.mTable-fragments_td-usedByUndeletedArticles {
  text-align: right;
}
.mTable-fragments_td-versionId {
  font-size: 0;
  padding: 1px;
  position: relative;
  min-height: 32px;
}
.mTable-fragments_td-versionId img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-fragments_td-versionId img {
  width: 24px;
  height: 24px;
}
.mTable-thumbnails .mTable-fragments_td-versionId img {
  border: 1px solid var(--gray-d);
  width: 100%;
  display: block;
  margin: 2px 0;
}
.mTable-thumbnails .mTable-fragments_td-usedByUndeletedArticles {
  display: none;
}
.mTable-thumbnails .mTable-fragments_td-notes {
  display: none;
}

.mTable-thumbnails .mTable-sources_tr {
  width: 180px;
  vertical-align: bottom;
}
.mTable-sources_td-id {
  font-size: 0;
  padding: 1px;
}
.mTable-sources_td-id img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-sources_td-id img {
  width: 24px;
  height: 24px;
}
.mTable-list .mTable-sources_td-size {
  text-align: right;
}
.mTable-thumbnails .mTable-sources_td-id img {
  width: 100%;
  height: 120px;
  display: block;
  margin: 2px 0;
  object-fit: contain;
}
.mTable-thumbnails .mTable-sources_td {
  text-align: center;
  padding: 0 2px;
  line-height: 120%;
}
.mTable-thumbnails .mTable-sources_td-type {
  display: none;
}



.mTable-SAapplications_td-id img {
  background-color: #fff;
  object-fit: contain;
}
.mTable-list .mTable-SAapplications_td-id img {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}
.mTable-thumbnails .mTable-SAapplications_td-id img {
  border: 1px solid var(--gray-d);
  width: 100%;
  display: block;
  margin: 2px 0;
  border-radius: 16px;
}
.mTable-thumbnails .mTable-SAapplications_td-publisherName {
  font-weight: 200;
}
.mTable-thumbnails .mTable-SAapplications_td-domain {
  display: none;
}
.mTable-thumbnails .mTable-SAapplications_td-url {
  display: none;
}
.mTable-thumbnails .mTable-SAapplications_td-sslCertValid {
  display: none;
}

.mTable-vouchers_td-code {
  font-family: courier, monospace;
}

.mTable-processes_td-id,
.mTable-processes_td-dev,
.mTable-processes_td-pid,
.mTable-processes_td-start,
.mTable-processes_td-etime,
.mTable-processes_td-rss,
.mTable-processes_td-targetId {
  text-align: right;
}

.mTable_subscriptionChannel {
  display: inline-block;
  padding: 2px;
  margin-right: 2px;
  font-size: 80%;
  background-color: var(--gray-a);
  color: var(--gray-f);
}
.mTable_themeUsedAt {
  display: inline-block;
  padding: 2px 2px 1px 2px;
  margin-right: 2px;
  font-size: 80%;
  border: 1px solid currentcolor;
  border-radius: 3px;
}
.mTable_sourceLayoutSize {
  display: inline-block;
  padding: 2px 4px;
  margin-right: 2px;
  font-size: 80%;
  background-color: var(--gray-a);
  color: var(--gray-f);
  text-align: center;
  width: 1em;
  text-decoration: none;
}
.mTable_purchaseType {
  display: inline-block;
  padding: 2px 4px 2px 8px;
  margin-right: 4px;
  font-size: 75%;
  background-color: var(--gray-c);
  color: var(--gray-f);
  vertical-align: bottom;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
  position: relative;
}
.mTable_purchaseType:before {
  position: absolute;
  content: " ";
  display: block;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
}
.mTable_purchaseType-issue:before {
  background-color: var(--activeLED);
}
.mTable_purchaseType-subscription:before {
  background-color: var(--warningLED);
}
.mTable_purchaseType-folder:before {
  background-color: rgb(255, 255, 0)
}
.mTable_purchaseType-issueTag:before {
  background-color: rgb(0, 200, 0)
}
.mTable_purchaseType-eshopPackage:before {
  background-color: rgb(255, 128, 255);
}
.mTable_purchaseType-eshopItem:before {
  background-color: rgb(0, 200, 240);
}
.mTable_purchaseType-postage:before {
  background-color: rgb(160, 128, 0);
}


.flag {
  background-image: url('flags.png?v2');
  background-size: 357px 14px;
  width:21px;
  height:14px;
  display: inline-block;
  opacity: 0.75;
  box-shadow: inset 0px 0px 5px rgba(0,0,0,0.5);
  margin: 0 1px 0 0;
}
.darkTheme .flag {
  opacity: 1;
}
.flag-small {
  transform: scale(0.66);
}

.flag-en {
  background-position-x: -21px;
}
.flag-cz {
  background-position-x: -42px;
}
.flag-de {
  background-position-x: -63px;
}
.flag-sk {
  background-position-x: -84px;
}
.flag-cn {
  background-position-x: -105px;
}
.flag-kr {
  background-position-x: -126px;
}
.flag-ru {
  background-position-x: -147px;
}
.flag-es {
  background-position-x: -168px;
}
.flag-it {
  background-position-x: -189px;
}
.flag-jp {
  background-position-x: -210px;
}
.flag-ro {
  background-position-x: -231px;
}
.flag-se {
  background-position-x: -252px;
}
.flag-fi {
  background-position-x: -273px;
}
.flag-pl {
  background-position-x: -294px;
}
.flag-uk {
  background-position-x: -315px;
}
.flag-nl {
  background-position-x: -336px;
}



.mTable-searchProductId-issues_td-coverId {
  font-size: 0;
  padding: 1px;
}
.mTable-searchProductId-issues_td-coverId img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-searchProductId-issues_td-coverId img {
  width: 24px;
  height: 24px;
}
.mTable-thumbnails .mTable-searchProductId-issues_td-coverId img {
  border: 1px solid var(--gray-d);
  width: 100%;
  display: block;
  margin: 2px 0;
}
.mTable-searchProductId-issues_td-date {
  text-align: right;
}
.mTable-searchProductId-issues_td-languages {
  white-space: nowrap;
  text-overflow: clip;
  overflow: hidden;
}
.mTable-thumbnails .mTable-searchProductId-issues_td-languages {
  position: absolute;
  display: block;
  width: auto;
  top: -2px;
  right: 2px;
}
.mTable-thumbnails .mTable-searchProductId-issues_td-description {
  display: none;
}
.mTable-thumbnails .mTable-searchProductId-issues_td-productId {
  display: none;
}
.mTable-thumbnails .mTable-searchProductId-issues_td-notes {
  display: none;
}
.mTable-thumbnails .mTable-searchProductId-issues_td-tags {
  display: none;
}
.mTable-thumbnails .mTable-searchProductId-issues_td-availability {
  display: none;
}

.mTable-statementMonths_td-asIssue, .mTable-statementMonths_td-asSubscription, .mTable-statementMonths_td-asTag, .mTable-statementMonths_td-byCard, .mTable-statementMonths_td-byVoucher, .mTable-statementMonths_td-byEditor {
  text-align: right;
}
.mTable-statementMonths_td-total {
  background-color: rgba(0, 0, 0, 0.05);
  text-align: right;
  font-weight: bold;
}
.mTable-statementDays_tr.mTable_tr-sunday {
  border-bottom: 1px solid var(--gray-c);
}
.mTable-statementDays_td-day, .mTable-statementDays_td-asIssue, .mTable-statementDays_td-asSubscription, .mTable-statementDays_td-asTag, .mTable-statementDays_td-byCard, .mTable-statementDays_td-byVoucher, .mTable-statementDays_td-byEditor {
  text-align: right;
}
.mTable-statementDays_td-total {
  background-color: rgba(0, 0, 0, 0.05);
  text-align: right;
  font-weight: bold;
}

.mTable-statistics_td-date {
  text-align: right;
}
.mTable-statistics_td-newReaders {
  text-align: right;
}
.mTable-statistics_td-returningReaders {
  text-align: right;
}
.mTable-statistics_td-dailyUniqueReaders {
  background-color: rgba(0, 0, 0, 0.05);
  text-align: right;
  font-weight: bold;
}
.mTable-statistics_td-uniqueReaders {
  background-color: rgba(0, 0, 0, 0.05);
  text-align: right;
  font-weight: bold;
}
.mTable-statisticsTime_td-downloadedBytes {
  background-color: rgba(0, 0, 0, 0.05);
  text-align: right;
  font-weight: bold;
}
.mTable-statisticsPublishers_td-downloadedBytes {
  background-color: rgba(0, 0, 0, 0.05);
  text-align: right;
  font-weight: bold;
}

.mTable_td-versionId {
  position: relative;
}
.mTable-eshopPackages_td-price {
  text-align: right;
}

.mTable-appPublications_td-ord {
  text-align: right;
}
.mTable-thumbnails .mTable-appPublications_td-ord {
  position: absolute;
  display: block;
  width: auto;
  top: 2px;
  right: 2px;
}
.mTable-appPublications_td-logo {
  font-size: 0;
  padding: 1px;
}
.mTable-appPublications_td-logo img {
  box-sizing: border-box;
  object-fit: contain;
}
.mTable-list .mTable-appPublications_td-logo img {
  width: 48px;
  height: 24px;
}
.mTable-thumbnails .mTable-appPublications_td-logo img {
  width: 100px;
  height: 50px;
  display: block;
  margin: 2px;
}

.mTable-vocabulary_td-importance {
  text-align: right;
}

.mTable-SAplatforms_td-platformId i.fa-apple {
  color: #d40;
}
.mTable-SAplatforms_td-platformId i.fa-android {
  color: #0d8;
}
.mTable_td-currentBuild,
.mTable_td-currentDate,
.mTable_td-toApproveBuild,
.mTable_td-toApproveDate {
  text-align: right;
}
.mTable-SAplatforms_td-status i.fa-check {
  color: #0a0;
}
.mTable-SAplatforms_td-status i.fa-exclamation-triangle {
  color: #fa0;
}

.mTable-thumbnails .mTable-eshopCategories_td-contextMenu {
  float: left;
  width: 33%;
}
.mTable-eshopCategories_td-image {
  font-size: 0;
  padding: 1px;
}
.mTable-eshopCategories_td-image img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-thumbnails .mTable-eshopCategories_td-ord {
  float: right;
  width: 33%;
}
.mTable-list .mTable-eshopCategories_td-image img {
  width: 24px;
  height: 24px;
}
.mTable-thlist .mTable-eshopCategories_td-image img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.mTable-thumbnails .mTable-eshopCategories_td-image img {
  border: 1px solid var(--gray-d);
  width: 100%;
  display: block;
  margin: 2px 0;
}
.mTable-thumbnails .mTable-eshopCategories_td-description,
.mTable-thumbnails .mTable-eshopCategories_td-url {
  display: none;
}


.mTable-eshopItems_td-image {
  font-size: 0;
  padding: 1px;
}
.mTable-eshopItems_td-image img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-eshopItems_td-image img {
  width: 24px;
  height: 24px;
}
.mTable-thumbnails .mTable-eshopItems_td-image img {
  border: 1px solid var(--gray-d);
  width: 104px;
  height: 104px;
  display: block;
  margin: 2px 0;
}
.mTable-thumbnails .mTable-eshopItems_td-created,
.mTable-thumbnails .mTable-eshopItems_td-description,
.mTable-thumbnails .mTable-eshopItems_td-url,
.mTable-thumbnails .mTable-eshopItems_td-notes,
.mTable-thumbnails .mTable-eshopItems_td-variants {
  display: none;
}

.mTable-eshopInStockItemVariants_td-image {
  font-size: 0;
  padding: 1px;
}
.mTable-eshopInStockItemVariants_td-image img {
  box-sizing: border-box;
  object-fit: contain;
}
.mTable-list .mTable-eshopInStockItemVariants_td-image img {
  width: 24px;
  height: 24px;
}
.mTable-thlist .mTable-eshopInStockItemVariants_td-image img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.mTable-thumbnails .mTable-eshopInStockItemVariants_td-image img {
  border: 1px solid var(--gray-d);
  width: 128px;
  height: 128px;
  display: block;
  margin: 2px 0;
}
.mTable-thumbnails .mTable-eshopInStockItemVariants_td-categoryTitle,
.mTable-thumbnails .mTable-eshopInStockItemVariants_td-variantTitle,
.mTable-thumbnails .mTable-eshopInStockItemVariants_td-onStock {
  display: none;
}


.mTable-eshopItemAttributes_td-price,
.mTable-eshopItemAttributes_td-onStock {
  text-align: right;
}

.mTable-tickets_tr.mTable-tickets_tr-last {
  border-bottom: 1px solid var(--gray-c);
}

.mTable-itemSources_td-image img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-itemSources_td-image img {
  width: 24px;
  height: 24px;
}
.mTable-previews .mTable-itemSources_tr {
  vertical-align: bottom;
}
.mTable-thumbnails .mTable-itemSources_td-image img,
.mTable-previews .mTable-itemSources_td-image img {
  border: 1px solid var(--gray-d);
  display: block;
  margin: 2px 0;
}
.mTable-thumbnails .mTable-itemSources_td-image img {
  width: 104px;
  height: 104px;
}
.mTable-previews .mTable-itemSources_td-image img {
  width: 100%;
  height: 100%;
}
.mTable-thumbnails .mTable-itemSources_td-type,
.mTable-thumbnails .mTable-itemSources_td-ts,
.mTable-thumbnails .mTable-itemSources_td-created,
.mTable-thumbnails .mTable-itemSources_td-filename,
.mTable-previews .mTable-itemSources_td-type,
.mTable-previews .mTable-itemSources_td-ts,
.mTable-previews .mTable-itemSources_td-created,
.mTable-previews .mTable-itemSources_td-filename {
  display: none;
}
.mTable-thumbnails .mTable-itemSources_td-title,
.mTable-previews .mTable-itemSources_td-title {
  font-weight: bold;
}

.mTable-menuItems_tr-hidden {
  color: var(--gray-c);
}

.mTable-publicationLinks_td-image {
  font-size: 0;
  padding: 1px;
}
.mTable-publicationLinks_td-image img {
  box-sizing: border-box;
  object-fit: cover;
}
.mTable-list .mTable-publicationLinks_td-image img {
  width: 24px;
  height: 24px;
}
.mTable-thumbnails .mTable-publicationLinks_td-image img {
  border: 1px solid var(--gray-d);
  width: 100%;
  display: block;
  margin: 2px 0;
}

.tGraph {
  display: block;
  position: relative;
  height: 120px;
}

.tGraph_yAxis {
  position: absolute;
  width: 30px;
  height: calc(100% - 21px - 4px);
  top: 4px;
  left: 0;
  font-size: 10px;
}
.tGraph_xAxis {
  position: absolute;
  height: 16px;
  width: calc(100% - 29px - 20px);
  left: 29px;
  bottom: 4px;
  font-size: 10px;
}
.tGraph_dataArea {
  position: absolute;
  width: calc(100% - 30px - 20px);
  height: calc(100% - 20px - 4px);
  text-align: left;
  top: 4px;
  right: 20px;
  overflow: hidden;
}
.tGraph_legendArea {
  position: absolute;
  font-size: 10px;
  top: 8px;
  left: 44px;
  padding: 2px 3px 1px;
  overflow: hidden;
  border: 1px solid var(--gray-c);
  background-color: var(--gray-f-50);
}
.tGraph_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  font-size: 12px;
  text-align: right;
  padding: 0 8px;
}

.tGraph_xAxis:after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 4px;
  top: 0px;
  left: 0px;
  border-top: 1px solid var(--gray-a);
  border-right: 1px solid var(--gray-a);
  border-left: 1px solid var(--gray-a);
}
.tGraph_xAxisMinValue {
  position: absolute;
  text-align: right;
  bottom: 0;
  left: 0;
}
.tGraph_xAxisMaxValue {
  position: absolute;
  text-align: right;
  bottom: 0;
  right: 0;
}
.tGraph_yAxis:after {
  position: absolute;
  content: " ";
  height: 100%;
  top: 0px;
  right: 0px;
  width: 4px;
  border-top: 1px solid var(--gray-a);
  border-right: 1px solid var(--gray-a);
  border-bottom: 1px solid var(--gray-a);
}
.tGraph_yAxisMinValue {
  position: absolute;
  text-align: right;
  bottom: 0;
  right: 4px;
}
.tGraph_yAxisMaxValue {
  position: absolute;
  text-align: right;
  top: 0;
  right: 4px;
}

.tGraph_xAxisValue {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 2px;
  box-sizing: border-box;
  margin-left: 1px;
  /* transform: rotate(-90deg); */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tGraph_column {
  display: inline-block;
  position: relative;
  height: 100%;
  margin-left: 1px;
}
.tGraph_data {
  position: absolute;
  width: 100%;
  left: 0px;
  transition: height 1s, bottom 1s;
  box-shadow: inset 0 0 1px #477;
}
.tGraph_column-hidden .tGraph_data {
  height: 0px !important;
  bottom: 0px !important;
}
.tGraph_column-hidden .tGraph_data-0 {
  height: 1px !important;
}
.tGraph_legend {
  padding-left: 10px;
  position: relative;
}
.tGraph_legend:before {
  content: " ";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 1px;
  left: 0;
  box-shadow: inset 0 0 1px #477;
}
.tGraph_data-0, .tGraph_legend-0:before {
  background-color: #8dd;
}
.tGraph_data-1, .tGraph_legend-1:before {
  background-image: linear-gradient(135deg, #8dd 25%, #eee 25%, #eee 50%, #8dd 50%, #8dd 75%, #eee 75%, #eee 100%);
  background-size: 6px 6px;
}
.tGraph_column-selected .tGraph_data-0 {
  background-color: #fc5;
}
.tGraph_column-selected .tGraph_data-1 {
  background-image: linear-gradient(135deg, #fc5 25%, #eee 25%, #eee 50%, #fc5 50%, #fc5 75%, #eee 75%, #eee 100%);
}


.tGraph_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cccb;
}
.tGraph_overlay:after {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "\f1ce";
  color: var(--gray-8);
  font: normal normal normal 20px/1 FontAwesome;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}



.tList {
  overflow: hidden;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 360px);
  height: 100%;
  background-color: var(--gray-f8);
}

.mTable_tableBodyWrapper.mDropFile-activeDragAndDrop {
  background: repeating-linear-gradient(-45deg,
    rgba(0,0,0,0),
    rgba(0,0,0,0) 4px,
    var(--dropFileActiveColor) 4px,
    var(--dropFileActiveColor) 8px
  );
}
.mTable_tr-folder.mDropFile-activeTarget {
  background-color: var(--primary-color);
}

.tList .mTable {
  height: 100%;
  border: 0px none;
  border-radius: 0;
}
.tList_version {
  color: var(--gray-8);
  font-size:  var(--font-size-small);
  text-align: right;
}

@media screen and (max-width: 600px) {
  .tList {
    position: relative;
    height: auto;
    max-height: 50vh;
    width: 100%;
    top: inherit;
    right: auto;
    margin-top: 8px;
    border-top: 1px solid var(--gray-a);
  }
  .tList .mTable {
    height: calc(50vh - 32px);
  }
  .tList_version {
    right: 4px;
  }
}

.tList_loader {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  text-align: center;
}

.mRadioRow-tListMenu {
  display: block;
}
.mRadioRow-tListMenu .mRadioRow_item {
  display: block;
  position: relative;
  padding: 6px 8px 6px 16px;
  border-left: 0 none;
  border-top: 1px solid var(--gray-d);
  text-align: left;
}
.mRadioRow-tListMenu .mRadioRow_item:first-child {
  border-top: 0 none;
}
.mRadioRow-tListMenu .mRadioRow_item-on:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 9px;
  width: 4px;
  height: 10px;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
  background-color: var(--activeLED);
}
.mRadioRow-tListMenu .mRadioRow_item p {
  margin: 0;
}

.tList_itemSwitcher {
}

.tList_itemSwitcher-hidden {
  display: none;
}
.tList_itemSwitcher .fa-folder {
  color: var(--secondary-color);
  font-size: 21px;
  display: inline-block;
  margin: -6px 0 -4px;
  vertical-align: bottom;
}

.tList_graphWrapper {
  padding: 8px;
  border-bottom: 1px solid var(--gray-a);
}
.tGraph-statisticsView {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 75%;
  height: 240px;
}
.tList_graphInfo {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 25%;
}
@media screen and (max-width: 600px) {
  .tGraph-statisticsView {
    display: block;
    width: 100%;
  }
  .tList_graphInfo {
    display: block;
    width: 100%;
  }
}

.manageFonts_family {
  position: relative;
  padding: 4px 4px 4px 4px;
  cursor: pointer;
  border: 1px solid transparent;
}
.manageFonts_selectedFacesCount {
  float: right;
}

.manageFonts_faceItem {
  padding: 4px 4px;
  border: 1px solid transparent;
  cursor: pointer;
}
.manageFonts_faceItem:hover {
  border-color: var(--gray-8);
}

.manageFonts_sampleTextWrapper {
  padding: 4px;
  background-color: var(--gray-b);
}
.manageFonts_allFacesWrapper {
  padding: 4px 5px;
}
.tNavigation {
  padding: 4px 0;
  display: flex;
  width: 100%;
}
.tNavigation_button {
  flex: 0 100 auto;
  min-width: 64px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 2px 8px;
  margin: 0 0 0 -1px;
  border: 1px solid var(--gray-d);
  border-radius: 0;
  background-color: var(--gray-f);
  font-size: var(--font-size);
  color: var(--gray-0);
  text-align: left;
  height: 3.6em;
}
.tNavigation_button:first-child {
  min-width: 31px;
  margin-left: 0px;
}
.tNavigation_button:last-child {
  flex: 0 1 auto;
}
.tNavigation_button:hover {
  flex: 0 0 auto;
}
.tNavigation_button:last-child:hover {
  flex: 0 1 auto;
}
.tNavigation_buttonPart {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 130%;
}
.tNavigation_buttonPart-desc {
  font-size: 90%;
  font-weight: 200;
}
.tNavigation_button:hover {
  background-color: var(--gray-a);
  border-color: var(--gray-8);
  z-index: 1;
}

.tSidebar {
  box-sizing: border-box;
  width: 360px;
  background-color: var(--gray-e);
  border-right: 1px solid var(--gray-d);
  color: var(--gray-0);
  height: 100%;
  overflow: hidden;
  transition: 0.5s all;
}
.tSidebar_main {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 16px 40px 16px;
  height: 100%;
  overflow-y: scroll;
}
.tSidebar-editorMode {
  position: absolute;
  width: 480px;
}
.tSidebar-editorMode .tSidebar_main {
  width: 320px;
}
.tSidebar-editorMode .toolBar {
  display: block;
}
.tSidebar-editorMode .tList, .tSidebar-editorMode .tTasks {
  display: none;
}
.tSidebar-hidden {
  transform: translate(-320px, 0);
  width: 360px;
}
.tSidebar-hidden .toolBar {
  width: 40px;
}
.tSidebar-hidden .toolIcon_text {
  display: none;
}

.tSidebar_logo {
  opacity: 0.4;
  width: 133px;
  height: 30px;
  background-image: url('triobo-bw.png');
  background-size: 133px 30px;
  background-repeat: no-repeat;
  margin-bottom: 8px;
}
.darkTheme .tSidebar_logo {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.tSidebar_sectionTitle {
  color: var(--primary-color);
  font-size: 140%;
  margin: 24px 0 8px;
  clear: left;
}
.tSidebar_sectionTitle-first {
  margin-top: 4px;
}
.tList_sidebarThumbnail {
  float: left;
  border: 1px solid var(--gray-d);
  font-size: 0;
  width: 100px;
  margin: 0 8px 8px 0;
}
.tList_sidebarThumbnail img {
  width: 100%;
  object-fit: cover;
}
.tList_sidebarLogo {
  font-size: 0;
  width: 100%;
  height: 80px;
  margin: 8px 0;
}
.tList_sidebarLogo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.tList_sidebarCategoryThumbnail {
  font-size: 0;
  width: 100%;
  height: 228px;
  margin: 8px 0;
  border: 1px solid var(--gray-d);
}
.tList_sidebarCategoryThumbnail img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media screen and (max-width: 600px) {
  .tSidebar {
    width: 100%;
    height: auto;
    min-height: 100%;
    position: relative;
  }
  .tSidebar_main {
    width: 100%;
    padding: 8px 8px 40px 8px;
    overflow: auto;
  }
  .tSidebar-editorMode {
    width: 480px;
    height: 100%;
  }
  .tSidebar-hidden {
    width: 360px;
  }

  .tList_sidebarLogo, .tList_sidebarThumbnail {
    width: calc(33% - 8px);
    float: left;
    margin-right: 8px;
  }
}

.tSidebar_title {
  color: var(--primary-color);
  font-size: 200%;
  margin: 4px 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 130%;
}
.tSidebar_small {
  font-size: var(--font-size-small);
}
.tSidebar_description {
  margin: 4px 0;
  color: var(--gray-4);
  white-space: pre-wrap;
}
.tSidebar_companyName {
  font-weight: 600;
  margin: 4px 0;
  color: var(--gray-4);
}
.tSidebar_minibutton {
  float: right;
  margin-top: 0.4em;
  cursor: pointer;
  color: var(--gray-4);
}
.tSidebar_minibutton:hover {
  color: var(--gray-0);
}

.tSidebar_buttonGroup {
  clear: both;
  margin: 8px 0 16px;
}
.previewMode .tSidebar_buttonGroup-editingMode {
  display: none;
}
.proofreadingMode .tSidebar_buttonGroup-editingMode {
  display: none;
}
.tSidebar_button {
  position: relative;
  margin: 0 4px 4px 0;
  border: 1px solid var(--gray-d);
  font-size: var(--font-size);
  background-color: var(--gray-f);
  color: var(--gray-0);
  text-align: left;
  display: inline-block;
  vertical-align: bottom;
  border-radius: 3px;
  padding: 8px;
}
.tSidebar_button:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.tSidebar_button-square {
  padding: 2px;
  width: calc(33% - 2px);
  height: 78px;
  vertical-align: middle;
  margin: 0 2px 2px 0;
  text-align: center;
  border: 1px solid var(--gray-d);
  background-color: var(--gray-f);
  color: var(--gray-0);
}
.tSidebar_button-square i {
  display: block;
  font-size: 21px;
  position: absolute;
  bottom: 42px;
  left: 2px;
  right: 2px;
  margin: 0 auto;
}
.tSidebar_button-square span {
  display: block;
  font-size: var(--font-size);
  line-height: 1;
  position: absolute;
  top: 42px;
  left: 2px;
  right: 2px;
  margin: 0 auto;
}

.tSidebar_button i {
  line-height: 0.8;
  vertical-align: bottom;
  padding-bottom: 1px;
}

.tSidebar_button-admin i {
  color: #0aa;
}
.tSidebar_button-withStatus {
  padding-left: 16px;
}
.tSidebar_button-withStatus:before {
  content: " ";
  display: block;
  position: absolute;
  left: 6px;
  top: 11px;
  width: 4px;
  height: 10px;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
  background-color: var(--passiveLED);
}
.tSidebar_button-on:before, .tSidebar_button-published:before {
  background-color: var(--activeLED);
}
.tSidebar_button-notPublished:before {
  background-color: var(--passiveLED);
}
.tSidebar_button-outdated:before {
  background-color: var(--warningLED);
}
.tSidebar_button-prepared:before {
  background-color: rgb(0, 128, 0);
}
.tSidebar_button-hidden {
  display: none;
}

.tList_sidebarJobStatus {
  background-color: var(--gray-f);
  padding: 8px;
}
.tList_sidebarJobAbort {
  float: right;
  width: 32px;
  height: 32px;
  padding: 4px;
  margin: 12px 0 8px 4px;
  border: 1px solid var(--gray-d);
  font-size: 14px;
  background-color: transparent;
  text-align: center;
  color: var(--gray-4);
}
.tList_sidebarJobAbort:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.tList_sidebarJobProgress {
  box-sizing: border-box;
  height: 8px;
  border: 1px solid var(--gray-d);
  position: relative;
  width: calc(100% - 36px);
}
.tList_sidebarJobProgress div {
  background-color: var(--activeLED);
  height: 100%;
}
.tList_sidebarJobPercents {
  text-align: center;
  color: var(--gray-8);
}
.tList_sidebarJobDesc {
  text-align: center;
  color: var(--gray-8);
}

.tSidebar_comboButton {
  box-sizing: border-box;
  width: calc(100% + 6px);
  margin: 4px -6px;
  padding: 4px;
  font-size: var(--font-size);
  border: 1px solid transparent;
  text-align: left;
  color: var(--gray-1);
  cursor: pointer;
}
.tSidebar_comboButton:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.tSidebar_comboButtonIcon {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
  height: 48px;
  margin-right: 4px;
  background-color: #fff;
  border: 1px solid var(--gray-d);
  border-radius: 8px;
  object-fit: contain;
}
.tSidebar_comboButton-big .tSidebar_comboButtonIcon {
  display: block;
  width: 96px;
  height: 96px;
  margin: 16px auto;
}

.tSidebar_comboButtonProperties {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 54px);
}
.tSidebar_comboButton-big .tSidebar_comboButtonProperties {
  display: block;
  width: 100%;
  text-align: center;
}
.tSidebar_comboButtonProperties p {
  margin: 0;
}
.tSidebar_comboButtonTitle {
  color: var(--gray-0);
  font-size: 120%;
  font-weight: 200;
}
.tSidebar_comboButtonInfo {
  color: var(--gray-8);
  text-overflow: ellipsis;
  overflow: hidden;
}
.tSidebar_comboButtonInfo span {
  margin-right: 8px;
}


.tFooter {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 360px;
  background-color: var(--gray-d);
}
@media screen and (max-width: 600px) {
  .tFooter {
    width: 100%;
  }
}
.tFooter_button {
  padding: 8px 4px;
  margin: 0;
  border: 1px solid transparent;
  background-color: transparent;
  font-size: var(--font-size);
  text-align: left;
  color: var(--gray-4);
  line-height: 0.9;
}
.tFooter_button:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.tFooter_button-user {
  padding: 3px 4px 2px;
  width: calc(100% - 74px);
}

.tFooter_button-user i {
  float: left;
  padding: 5px 4px 6px 0;
}
.tFooter_button-user p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 2px 0;
}
.tFooter_publisherName {
  font-size: var(--font-size-small);
  color: var(--gray-6);
}
.tFooter_rightButtons {
  float: right;
}
.tSidebar_formItem {
  padding: 8px;
  margin: 8px 0;
  border: 1px solid var(--gray-b);
}
.tSidebar_formLabel {
  margin: 4px 0;
  font-weight: bold;
}
.tSidebar_formOption {
  margin: 4px 0 2px;
}
.tSidebar_formOptionValue {
  float: right;
}
.tSidebar_formOptionBar {
  height: 4px;
  margin: 0 0 8px;
}
.tSidebar_formOptionInnerBar {
  height: 100%;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
  background-color: var(--activeLED);
}

.tSidebar_article {
  padding: 4px;
  margin: 4px 0;
  border: 1px solid var(--gray-b);
  cursor: pointer;
}
.tSidebar_article:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.tSidebarArticle_title {
  font-weight: bold;
}

.tTasks {
  border-top: 1px solid var(--lines-color);
  padding-top: 1em;
  margin-top: 2em;
}
.tTasks_buttons {
  margin-right: -1px;
}
.tTasks_button {
  position: relative;
  padding: 2px;
  width: 80px;
  height: 80px;
  vertical-align: middle;
  margin: 0 2px 2px 0;
  border: 1px solid var(--gray-d);
  font-size: var(--font-size);
  background-color: var(--gray-f);
  color: var(--gray-0);
  text-align: center;
  border-radius: 3px;
}
.tTasks_button:hover {
  border-color: var(--gray-8);
  background-color: var(--gray-a);
}
.tTasks_button i {
  display: block;
  font-size: 21px;
  position: absolute;
  bottom: 40px;
  left: 2px;
  right: 2px;
  margin: 0 auto;
}
.tTasks_button span {
  display: block;
  font-size: var(--font-size);
  line-height: 1;
  position: absolute;
  top: 44px;
  left: 2px;
  right: 2px;
  margin: 0 auto;
}
.tTasks_button:disabled {
  background-color: var(--gray-e);
  border: 1px solid var(--gray-b);
  color: var(--gray-a);
  cursor: not-allowed;
}

