/* 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 {
  background-color: var(--black);
}
.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;
}

/* 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: 3px;
  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%;
}

.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 {
}

article {
  display: none;
}
article.plainHTML {
  display: block;
  overflow-y: scroll;
  height: 100%;
  background: white;
  font-size: 14px;
}
article.plainHTML ul {
  display: block;
  list-style: disc outside none;
  margin: 1em 0;
  padding-left: 1.5em;
}
article.plainHTML ul li {
  display: list-item;
}
article.plainHTML ul li a {
  color: blue;
}
article.plainHTML h1 {
  font-weight: bold;
  font-size: 200%;
}
article.plainHTML h2 {
  font-weight: bold;
  font-size: 120%;
}
article.plainHTML h3 {
  font-weight: bold;
}
article.plainHTML .menuItem {
  color: inherit;
  padding: 0;
}
/* default colors */
:root {
  --highlighting-color: rgb(48,170,204);
  --opposite-color: #fff;
  --header-background: rgb(48,170,204);
  --header-text: #fff;
  --header-icons: #fff;
  --background-color: #eee;
  --text-color: #444;
  --lines-color: rgba(128,128,128,0.25);
  --controlbar-bg-color: rgba(255, 255, 255, 0.8);
  --container-bg-color: #ddd;
  --inputs-background: rgb(255,255,255,0.75);
  --inputs-color: #444;

  --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-e: #eee;
  --gray-f: #fff;

  --gray-0-25: #0004;
  --gray-0-50: #0008;

  --button-border-radius: 0.375em;
  --area-border-radius: 0.375em;

  --def-line-height: 140%;
}

.trioboThemeDark {
  --background-color: #111;
  --text-color: #ccc;
  --controlbar-bg-color: rgba(0, 0, 0, 0.8);
  --container-bg-color: #222;

  --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-e: #111;
  --gray-f: #000;
}

html, body {
  width: 100%;
  height: 100%;
}
body {
  line-height: 1.2;
  vertical-align: baseline;
  font-family: Roboto, Helvetica, Arial, sans;
  font-weight: normal;
  font-size: 12px;

  background-color: var(--background-color);
  color: var(--text-color);

  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform-style: flat;
  transform-style: flat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-touch-callout: none;
  overflow: hidden;

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


/* font awesome */
@font-face {
  font-family: 'FontAwesome';
  src: url('fontawesome-webfont.ttf?v=4.7') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 87.5%/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  position: relative;
}

.fa-mini {
  font-size: 0.3em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-left {
  float: left;
  margin-right: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-red {
  color: #d00;
}
.fa-green {
  color: #0d0;
}

@-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-rollDown {
  -webkit-animation: fa-rollDown 2s infinite linear;
  animation: fa-rollDown 2s infinite linear;
}

@-webkit-keyframes fa-rollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
    opacity: 0;
  }
  76% {
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fa-rollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  75% {
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
    opacity: 0;
  }
  76% {
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}


.fa-times:before {
  content: "\f00d";
}
.fa-cog:before {
  content: "\f013";
}
.fa-cogs:before {
  content: "\f085";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-search:before {
  content: "\f002";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-download:before {
  content: "\f019";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-cog:before {
  content: "\f013";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-wrench:before {
  content: "\f0ad";
}
.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-ellipsis-v:before {
  content: "\f142";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-apple:before {
  content: "\f179";
}
.fa-android:before {
  content: "\f17b";
}
.fa-home:before {
  content: "\f015";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-lock:before {
  content: "\f023";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-phone:before {
  content: "\f095";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-archive:before {
  content: "\f187";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-check:before {
  content: "\f00c";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-list:before {
  content: "\f03a";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.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-film:before {
  content: "\f008";
}
.fa-music:before {
  content: "\f001";
}
.fa-book:before {
  content: "\f02d";
}
.fa-font:before {
  content: "\f031";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-question:before {
  content: "\f128";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-repeat:before {
  content: "\f01e";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-university:before {
  content: "\f19c";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-file-o:before {
  content: "\f016";
}

.fa-disabled:after {
  content: " ";
  position: absolute;
  top: calc(50% - 0.125em);
  left: -20%;
  width: 140%;
  height: 0.25em;
  transform: rotate(-45deg);
  background: #f00;
  border-radius: 0.125em;
}

.ti {
  display: inline-block;
  vertical-align: baseline;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.ti-folder-o {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M 5 6 h 4 l 2 2 h 10 a 1 1 0 0 1 1 1 v 13 a 1 1 0 0 1 -1 1 h -16 a 1 1 0 0 1 -1 -1 v -15 a 1 1 0 0 1 1 -1 z' fill='none' stroke='black' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M 5 6 h 4 l 2 2 h 10 a 1 1 0 0 1 1 1 v 13 a 1 1 0 0 1 -1 1 h -16 a 1 1 0 0 1 -1 -1 v -15 a 1 1 0 0 1 1 -1 z' fill='none' stroke='black' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ti-file-o {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M 10 6 a 1 1 0 0 0 -1 1 v 15 a 1 1 0 0 0 1 1 h 11 a 1 1 0 0 0 1 -1 v -11 l -5 -5 z m 7 0 v 5 h 5' fill='none' stroke='black' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M 10 6 a 1 1 0 0 0 -1 1 v 15 a 1 1 0 0 0 1 1 h 11 a 1 1 0 0 0 1 -1 v -11 l -5 -5 z m 7 0 v 5 h 5' fill='none' stroke='black' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E");
}



/* m redefines */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  /* border: 1px solid var(--highlighting-color); */
  -webkit-text-fill-color: var(--highlighting-color);
  -webkit-box-shadow: 0 0 0 100px var(--inputs-background) inset;
}

.mScreen_overlay {
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.15);
}

.mButton {
  font-family: Roboto, Helvetica, Arial, sans;
  font-size: 100%;
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
  border: 1px solid var(--highlighting-color);
  border-radius: var(--button-border-radius, 0.375em);
  padding: 0.5em 2em;
  margin: 0.25em;
}
.mButton-inProgress {
  pointer-events: none;
  background-color: var(--lines-color);
  color: var(--opposite-color);
}
.mButton-inProgress:before {
  content: "\f1ce";
  float: left;
  font: normal normal normal 87.5%/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  margin: 0.15em 0.25em 0 -0.5em;
}
.item_status.mButton-inProgress {
  margin-left: 0;
  background-color: transparent;
}
.item_status.mButton-inProgress:before {
  margin-left: 0;
}
.mButton:hover,
.mButton:focus {
  background-color: var(--opposite-color);
  color: var(--highlighting-color);
  border-color: var(--highlighting-color);
}
.mButton:disabled {
  cursor: default;
}
.mButton:disabled:hover {
  color: var(--gray-b);
  background-color: var(--highlighting-color);
  border-color: var(--highlighting-color);
}
.mButton-inverted {
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
  border: 1px solid var(--highlighting-color);
}
.mButton-inverted:hover {
  color: var(--opposite-color);
  background-color: var(--highlighting-color);
}

.mFloatingMenu, .mFloatingPanel {
  background-color: var(--gray-f);
  color: var(--gray-0);
  border: 1px solid var(--gray-0);
  border-radius: var(--area-border-radius, 0.375em);
  overflow: hidden;
  padding: 0;
  box-shadow: 0.125em 0.125em 0.5em #0008;
  box-sizing: border-box;
}
.mFloatingMenu_item {
  background-color: transparent;
  color: var(--gray-0);
  border: 0 none;
  border-bottom: 1px solid var(--gray-0);
  margin: 0;
  padding: 0.5em 1em;
  border-radius: 0;
  text-align: left;
}
.mFloatingMenu_item:hover {
  color: var(--gray-0);
  border-color: var(--gray-0);
}
.mFloatingMenu_item:last-child {
  border-bottom: 0 none;
  margin-bottom: 0;
}
.mFloatingMenu_item-checked:before {
  position: absolute;
  right: 0.5em;
  content: "\f00c";
  font: normal normal normal 87.5%/1 FontAwesome;
  font-size: inherit;
}
.mFloatingMenu_item-submenu:before {
  position: absolute;
  right: 0.5em;
  content: "\f0da";
  font: normal normal normal 87.5%/1 FontAwesome;
  font-size: inherit;
}
.mFloatingMenu_item-floatingMenuHeader {
  background-color: var(--gray-0);
  color: var(--gray-f);
}
.mFloatingMenu_item-floatingMenuHeader:hover {
  background-color: var(--gray-0);
  color: var(--gray-f);
}
.mFloatingMenu_item-memberLogin {
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
  margin: -7px -7px 4px -7px;
  width: calc(100% + 14px);
  padding: 0.5em 1em;
  border-radius: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mFloatingMenu_item-memberLogin:hover {
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
}
.mFloatingMenu_item-memberLogin i {
  margin-right: 0.6em;
}
.mFloatingMenu_item-floatingMenuFooter {
  background-color: var(--gray-0);
  color: var(--gray-f);
  padding: 0;
  text-align: center;
}
.mFloatingMenu_item-floatingMenuFooter:hover {
  background-color: var(--gray-0);
  color: var(--gray-f);
}
.mFloatingMenu_item-floatingMenuFooter span {
  display: inline-block;
  width: 16em;
  height: 1.5em;
  background-image: url('powered_by_Triobo.png');
  background-size: 100% 100%;
  cursor: pointer;
}

.mFloatingPanel-toast {
  text-align: center;
  border: 0px none;
  background-color: var(--gray-0);
  color: var(--gray-f);
  border-radius: var(--area-border-radius, 0.375em);
  line-height: 120%;
}
.mFloatingPanel-serviceOption {
  background-color: var(--highlighting-color);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/xQAAukB5vvocQUAAAAASUVORK5CYII=);
  background-size: 100% 100%;
  color: var(--text-color);
}

.warning {
  color: #d00;
}

.mSlider_bar {
  background-color: var(--gray-6);
}
.mSlider_thumb {
  background-color: var(--gray-6);
  transition: all 0.30s ease;
}
.mSlider:hover .mSlider_thumb {
  background-color: var(--highlighting-color);
}
.mSlider_thumb.mDragged {
  background-color: var(--highlighting-color);
  transition: none;
}


/* Dialogs */
.mDialog {
  color: var(--text-color);
  background-color: var(--background-color);
  border: 1px solid var(--highlighting-color);
  box-shadow: 0.125em 0.125em 0.5em #0008;
  font-size: 93.75%; /* 15px */
  border-radius: var(--area-border-radius, 0.375em);
  overflow: hidden;
  max-width: 95%;
  line-height: var(--def-line-height);
}
.mDialog_overlay {
  background-color: #fff8;
}
.mDialog_overlay:after {
  position: absolute;
  width: 1em;
  height: 1em;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "\f1ce";
  color: var(--gray-8);
  font: normal normal normal 125%/1 FontAwesome;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.mDialog_header {
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
  padding: 0.75em;
}
.mDialog_headerClosingButton {
  padding: 0.45em 0.75em;
}
.mDialog_headerClosingButton:hover {
  background-color: var(--opposite-color);
  color: var(--highlighting-color);
}
.mDialog_content {
  padding: 1em;
}
.mDialog_content b {
  font-weight: bold;
}
.mDialog_content>p {
  margin: 1em 0 0.5em;
  line-height: var(--def-line-height);
}
.mDialog_content>p.mDialog_note {
  margin-top: 0;
  font-size: 80%;
}
.mDialog a {
  text-decoration: underline;
}
.mDialog a:focus {
  outline: 1px dotted var(--highlighting-color);
}
.mDialog_title {
  font-weight: 300;
  font-size: 200%;
  line-height: var(--def-line-height);
  margin: 24px 0 8px;
}
.mDialog_title:first-child{
  margin-top: 0;
}
.mDialog_subtitle {
  font-weight: 300;
  font-size: 150%;
  line-height: var(--def-line-height);
  margin: 16px 0 8px;
}
.mDialog_buttons {
  border-top: 1px solid var(--lines-color);
  background-color: var(--background-color);
}



.mInput, .mTextarea {
  box-sizing: border-box;
  border: 1px solid var(--lines-color);
  border-radius: var(--area-border-radius, 0.375em);
  color: var(--inputs-color);
  background-color: var(--inputs-background);
  margin: 0 0 1px 0;
  padding: 0.5em;
  outline: 0px none transparent;
  font-family: Roboto, Helvetica, Arial, sans;
  font-size: 100%;
  line-height: var(--def-line-height);
}
.mInputWithMenu {
  border: 1px solid var(--lines-color);
  border-radius: var(--area-border-radius, 0.375em);
  background-color: var(--inputs-background);
}
.mInputWithMenu .mButton {
  color: var(--inputs-color);
  padding: 0.5em;
}
.mInputWithNumberControl {
}
.mInputWithNumberControl_input {
  padding: 6px 4px;
  margin: 0;
}
.mInputWithNumberControl_button {
  background-color: transparent;
  color: var(--gray-4);
  padding: 1px;
  border: 0 none;
  margin: 0;
}
.mInputWithNumberControl_button:hover {
  background-color: transparent;
  color: var(--highlighting-color);
}
.mInputWithNumberControl-focused .mInputWithNumberControl_input {
  border-color: var(--highlighting-color);
}
.mInput:focus, .mTextarea:focus, .mInputWithMenu-focused {
  border-color: var(--highlighting-color);
}
.mInput:disabled, .mTextarea:disabled {
  background-color: transparent;
  color: var(--gray-8);
}
.mSelect, .mDropdown {
  border-radius: 0;
  border: 1px solid var(--lines-color);
  border-radius: var(--button-border-radius, 0.375em);
  color: var(--gray-4);
  background-color: var(--gray-f);
  margin: 0 0 1px 0;
  padding: 0.125em 0.25em;
  font-size: 100%;
  background-position-y: -0.375em;
  cursor: pointer;
}
.mDropdown-disabled {
  background-color: var(--gray-d);
  color: var(--gray-8);
}

.mElementsWithLabels {
  padding: 0;
}
.mElementsWithLabels_row {
  margin: 0.125em 0;
}
.mElementsWithLabels_row.mMarginOnTop {
  margin-top: 1em;
}
.mElementsWithLabels_label {
  padding-top: calc(0.5em + 1px);
  display: inline-block;
  font-size: 100%;
}
.mElementsWithLabels_element-withLabel {
  display: inline-block;
}
.mElementsWithLabels_element * {
  vertical-align: top;
}

.mRadioRow {
  box-sizing: border-box;
}

.mRadioRow_item {
  padding: 0.4em 0.5em 0.25em;
  color: var(--inputs-color);
  background-color: var(--inputs-background);
  border-top: 1px solid var(--lines-color);
  border-bottom: 1px solid var(--lines-color);
  border-right: 1px solid var(--lines-color);
}
.mRadioRow_item:first-child {
  border-left: 1px solid var(--lines-color);
}
.mRadioRow_item-on {
  color: var(--gray-f);
  background-color: var(--highlighting-color);
}

.mRadioButtons {
  background-color: transparent;
  text-align: center;
  white-space: nowrap;
}
.mRadioButtons_item {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0.4em 0.4em 0.4em 1.5em;
  color: var(--inputs-color);
  font-size: 100%; /* 14px; */
  cursor: pointer;
  width: auto;
}
.tReader_searchbar .mRadioButtons_item {
  color: var(--inputs-color);
}
.searchbox .mRadioButtons_item {
  padding-left: 2.2em;
}
.mRadioButtons_item p {
  display: inline-block;
  width: auto;
}
.mRadioButtons_checkbox {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5em;
  margin: auto;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid var(--highlighting-color);
  border-radius: var(--area-border-radius, 0.375em);
}
.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;
  background-color: var(--highlighting-color);
  width: 0.75em;
  height: 0.75em;
  border-radius: calc(var(--area-border-radius, 0.375em) / 2);
}
.mRadioButtons_item-on .mRadioButtons_checkbox:after {
  opacity: 1;
}
.mCheckbox {
  padding: 0.25em 0;
}
.mCheckbox_checkbox {
  display: inline-block;
  position: relative;
  vertical-align: top;
  left: auto;
  margin-top: -0.1em;
  margin-right: 0.5em;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid var(--lines-color);
  background-color: var(--inputs-background);
  border-radius: var(--area-border-radius, 0.375em);
}
.mCheckbox_checkbox:after {
  background-color: var(--highlighting-color);
  width: 0.75em;
  height: 0.75em;
  border-radius: calc(var(--area-border-radius, 0.375em) / 2);
}
.mCheckbox_text {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 2em);
}
.mCheckbox-disabled {
  cursor: default;
}
.mCheckbox-disabled .mCheckbox_checkbox {
  border: 1px solid var(--lines-color);
}
.mCheckbox-disabled .mCheckbox_checkbox:after {
  background-color: var(--lines-color);
}
.mCheckbox-disabled p {
  color: var(--lines-color);
}

.mCheckbox.tCookieManager_serviceTitle {
  text-align: left;
  padding: 0;
}
.mCheckbox.tCookieManager_serviceOptionTitle {
  text-align: left;
  padding: 0;
}

#desktop.desktop-simulator {
  height: 100%;
}
.mConsole {
  border-top: 1px solid var(--gray-a);
  font-size: 0.675em;
}
.mConsole_row-error {
  font-weight: bold;
  color: #d00;
}
.mConsole_row-important {
  color: #048;
  font-weight: bold;
}
.mConsole_row-render {
  color: #a4a;
}
.mConsole_row-meta {
  color: #f80;
}
.mConsole_row-event {
  color: #f88;
}
.mConsole_row-download {
  color: #0ac;
}
.mConsole_row-local {
  color: #484;
}
.mConsole_row-faded {
  opacity: 0.3;
}
.mConsole_row-history {
  color: #aa0;
}
.mConsole_row-newScreen {
  color: #08b;
  font-weight: bold;
  border-bottom: 1px solid currentcolor;
}

.mConsole_DQ .finished {
  color: #8a8;
}
.mConsole_DQ .downloading {
  color: #08f;
}
.mConsole_DQ .waiting {
  color: var(--gray-6);
}
.mConsole_DQ .error {
  color: #d00;
}
.mConsole_DQ .cancelled {
  color: #a88
}

/* pdf2html def styles */
.pf{opacity:0;transition:opacity 0.5s;position:relative;background-color:white;overflow:hidden;margin:0;border:0;}
.pc{position:absolute;border:0;padding:0;margin:0;top:0;left:0;width:100%;height:100%;overflow:hidden;display:block;transform-origin:0 0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0}
.bf{position:absolute;border:0;margin:0;top:0;bottom:0;width:100%;height:100%;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;user-select:none}
.bi{position:absolute;border:0;margin:0;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;user-select:none}
.c{position:absolute;border:0;padding:0;margin:0;overflow:show;display:block}
.t{pointer-events: all;position:absolute;white-space:pre;word-wrap:normal;font-size:1px;transform-origin:0 100%;-ms-transform-origin:0 100%;-webkit-transform-origin:0 100%;unicode-bidi:bidi-override;-moz-font-feature-settings:"liga" 0}
.t:after{content:""}
.t:before{content:"";display:inline-block}
.t span{position:relative;unicode-bidi:bidi-override}
._{display:inline-block;color:transparent;z-index:-1}


/*#sidebar{position:absolute;top:0;left:0;bottom:0;width:250px;padding:0;margin:0;overflow:auto}
#page-container{position:absolute;top:0;left:0;margin:0;padding:0;border:0}
@media screen{#sidebar.opened+#page-container{left:250px}#page-container{bottom:0;right:0;overflow:auto}.loading-indicator{display:none}.loading-indicator.active{display:block;position:absolute;width:64px;height:64px;top:50%;left:50%;margin-top:-32px;margin-left:-32px}.loading-indicator img{position:absolute;top:0;left:0;bottom:0;right:0}}
@media print{@page{margin:0}html{margin:0}body{margin:0;-webkit-print-color-adjust:exact}#sidebar{display:none}#page-container{width:auto;height:auto;overflow:visible;background-color:transparent}.d{display:none}}
.pf{opacity:0;transition:opacity 0.5s;position:relative;background-color:white;overflow:hidden;margin:0;border:0;}
.pc{position:absolute;border:0;padding:0;margin:0;top:0;left:0;width:100%;height:100%;overflow:hidden;display:block;transform-origin:0 0;-ms-transform-origin:0 0;-webkit-transform-origin:0 0}
.pc.opened{display:block}
.bf{position:absolute;border:0;margin:0;top:0;bottom:0;width:100%;height:100%;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;user-select:none}
.bi{position:absolute;border:0;margin:0;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none;user-select:none}
@media print{.pf{margin:0;box-shadow:none;page-break-after:always;page-break-inside:avoid}@-moz-document url-prefix(){.pf{overflow:visible;border:1px solid #fff}.pc{overflow:visible}}}
.c{position:absolute;border:0;padding:0;margin:0;overflow:hidden;display:block}
.t{position:absolute;white-space:pre;word-wrap:normal;font-size:1px;transform-origin:0 100%;-ms-transform-origin:0 100%;-webkit-transform-origin:0 100%;unicode-bidi:bidi-override;-moz-font-feature-settings:'liga' 0}
.t:after{content:''}
.t:before{content:'';display:inline-block}
.t span{position:relative;unicode-bidi:bidi-override}
._{display:inline-block;color:transparent;z-index:-1}
::selection{background:rgba(127,255,255,0.4)}
::-moz-selection{background:rgba(127,255,255,0.4)}
.pi{display:none}
.d{position:absolute;transform-origin:0 100%;-ms-transform-origin:0 100%;-webkit-transform-origin:0 100%}
.it{border:0;background-color:rgba(255,255,255,0.0)}
.ir:hover{cursor:pointer}*/

/* default content formatting */
.frame {
  pointer-events: none;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;

  outline: 0px solid transparent;
  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;

  /* iOS hack */
  -webkit-transform: translateZ(0);
}

.frame-typePage {
  left: 0px;
  top: 0px;
  width: 100%;
  min-height: 100%;
  font-size: 16px;
}
.frame-typePreview {

}
.frame-typeComponent {
  pointer-events: all;
  /* overflow-y: scroll; */
}
.frame-typeGroup {
  outline-style: dashed;
  min-height: 2px;
  min-width: 2px;
}
.frame-typeVariableObject {
  outline-style: dashed;
  min-height: 2px;
  min-width: 2px;

  pointer-events: all;
}
.container-overlayHidden .frame-typeVariableObject {
  pointer-events: none;
}

.frame-typeVariableObject:before {
  content: attr(data-dots);
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 16px;
  width: auto;
  margin: 0 auto;
  text-align: center;
  font: normal normal normal 8px/1 FontAwesome;
  z-index: 1;
}

.frame-typeState {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}
.frame-typeStateCurrent {
  display: block;
}
.frame-typeVariableObjectCrossfade .frame-typeStatePrevious {
  display: block;
  opacity: 0;
}
.frame-typeVariableObjectQuickHorizontal .frame-typeStatePrevious {
  display: block;
  transform: translateX(-32px);
  opacity: 0;
}
.frame-typeVariableObjectHorizontal .frame-typeStatePrevious {
  display: block;
  transform: translateX(-100%);
}
.frame-typeVariableObjectCrossfade .frame-typeStateNext {
  display: block;
  opacity: 0;
}
.frame-typeVariableObjectQuickHorizontal .frame-typeStateNext {
  display: block;
  transform: translateX(32px);
  opacity: 0;
}
.frame-typeVariableObjectHorizontal .frame-typeStateNext {
  display: block;
  transform: translateX(100%);
}

.frame-typeImage {
  overflow: hidden;
  font-size: 0px !important;
  line-height: 1;
}
.frame-typeVideo {
  font-size: 0px !important;
}
.frame-typeVideoWithControls {
  pointer-events: all;
}
.frame-typePdf {
  width: 100%;
  height: 100%;
  font-size: 0px !important;
}
.frame-typeOnline {
  pointer-events: all;
}
.frame-articlesReader {
  height: calc(100vh - 360px);
  min-height: 300px;
}
.frame-genuineArticlesReader {
  height: 100%;
}

.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: all;
  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-hasAction {
  pointer-events: all;
  cursor: pointer;
}
a.frame-hasAction {
  color: inherit;
}
@keyframes easyReaderHighlightOpacity {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes easyReaderHighlightOpacity20pct {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.2;
  }
  60% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}
@keyframes easyReaderHighlightBorder {
  0% {
    border-color: transparent;
  }
  30% {
    border-color: var(--highlighting-color);
  }
  60% {
    border-color: var(--highlighting-color);
  }
  100% {
    border-color: transparent;
  }
}
@keyframes easyReaderBlueBorder {
  0% {
    border-color: transparent;
  }
  30% {
    border-color: #0ad;
  }
  60% {
    border-color: #0ad;
  }
  100% {
    border-color: transparent;
  }
}
.frame-easyReading {
  pointer-events: all;
  cursor: zoom-in;
}
.frame-openSimpleArticle {
}
.frame-openExternalLink {
  cursor: pointer;
}
.frame-easyReading:not(.frame-typePdf) {
  border: 2px solid transparent;
  transition: border 0.5s;
}
.frame-easyReading .frame_pdfPageHelper {
  position: absolute;
  box-sizing: border-box;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  transition: border 0.5s;
}
.frame-easyReading:before {
  z-index: 1;
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: var(--highlighting-color);
  transition: opacity 0.5s;
  opacity: 0;
}
.frame-easyReading:after {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  content: '\f02d';
  padding-top: 6px;
  text-align: center;
  position: absolute;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
  right: 4px;
  bottom: 4px;
  transition: opacity 0.5s;
  opacity: 0;
}
.frame-openExternalLink:after {
  content: '\f08e';
}
.frame-zoomBox:before {
  background-color: #0ad;
}
.frame-zoomBox:after {
  background-color: #0ad;
  content: '\f00e';
}
.frame-easyReading.frame-typePdf:after {
  right: 6px;
  bottom: 6px;
}
.frame-easyReading:not(.frame-typePdf).frame-easyReading-animate {
  animation: easyReaderHighlightBorder 1s;
}
.frame-easyReading.frame-zoomBox.frame-easyReading-animate {
  animation: easyReaderBlueBorder 1s;
}
.frame-easyReading-animate .frame_pdfPageHelper {
  animation: easyReaderHighlightBorder 1s;
}
.frame-easyReading-animate:before {
  animation: easyReaderHighlightOpacity20pct 1s;
}
.frame-easyReading-animate:after {
  animation: easyReaderHighlightOpacity 1s;
}
@media (pointer: fine) {
  .showEasyReadingFramesOnHover .frame-easyReading-hover,
  .showEasyReadingFramesOnHover .frame-easyReading-hover .frame_pdfPageHelper {
    animation: easyReaderHighlightBorder 1s;
  }
  .showEasyReadingFramesOnHover .frame-easyReading-hover.frame-zoomBox {
    animation: easyReaderBlueBorder 1s;
  }
  .showEasyReadingFramesOnHover .frame-easyReading-hover:before {
    animation: easyReaderHighlightOpacity20pct 1s;
  }
  .showEasyReadingFramesOnHover .frame-easyReading-hover:after {
    animation: easyReaderHighlightOpacity 1s;
  }
}
.frame_field-issue_description {
  white-space: pre-wrap;
}
.frame_par {
  margin: 0;
  border: 0px solid #000;
}
#desktop.enableTextSelection .frame {
  -webkit-user-select: text;
  user-select: text;
  pointer-events: all;
}
#desktop.enableTextSelection .t {
  -webkit-user-select: text;
  user-select: text;
  pointer-events: all;
}

.frame_block {
  border: 0px solid #000;
}
.frame_image, .frame_pdf, .frame_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}
.frame_pdfTilesWrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.frame_pdfTile {
  width: 25%;
  height: 25%;
  display: inline-block;
  position: relative;
  transition: opacity 0.2s;
}
.frame_pdfTile-waitingToLoadFullRes {
  opacity: 0;
}
.waitingForOfflineSync {
  opacity: 0;
}
.frame_pdfHtmlContent {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-origin: top left;
}
.frame_pdfHtmlContent-transparent .pf {
  background-color: transparent;
}
.frame_pdfHtmlContent-transparent .bf {
  display: none;
}
.frame_pdfHtmlContent-transparent .t,
.frame_pdfHtmlContent-transparent .t * {
  color: transparent !important;
}
.frame_pdfHtmlContent-transparent .t .w-highlighted {
  color: black !important;
}

.frame_pdfHtmlThumbnail {

}
.frame_pdfHtmlThumbnail img {
  width: 100%;
}


.frame_youtube, .frame_vimeo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame_iframe {
  width: 100%;
  height: 100%;
}
.frame_iframe iframe {
  width: 100%;
  height: 100%;
  pointer-events: all;
}
.frame_iFrameThumbnail {
  width: calc(100% - 1px);
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
}
.frame_iFrameThumbnail p {
  margin: 2px 0;
}
.frame_iFrameThumbnail i {
  font-size: 200%;
}
.frame_iFrameThumbnail p.frame_iFrameThumbnailInfo {
  margin-top: 8px;
}
.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;
  font-size: 60px;
  color: white;
  text-shadow: 0 0 4px black;
}

.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_afterImageWrapper {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.frame_beforeAfterSlider {
  pointer-events: all;
  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;
  pointer-events: all;
}
.frame-formActive .frame-formTextButton {
  pointer-events: all;
}
.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-isScrolling {
  pointer-events: all;
}
.frame-zoomable {
  pointer-events: all;
}
.frame-zoomable.frame-pan {
  cursor: grabbing;
}
.frame-zoomable img {
  transition: transform 0.2s;
}

.frame-lockedArticle {
  height: 100%;
  margin: 0 auto;
}
.articlePreview_thumbnail {
  border: 0 none !important;
}
.articlePreview_thumbnail:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('mask.png');
  background-repeat: repeat;
  background-size: 8px 8px;
  opacity: 0.5;
}
.articlePreview_thumbnail .thumbnail {
  border: 0 none !important;
}

.frame_imageWrapper {
  height: 0px;
  position: relative;
}
.frame_imagePreview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.frame_image-loadingFullRes {
  display: none;
}

b.w,
b.wp {
  pointer-events: all;
  position: relative;
  display: inline-block;
  width: auto;
  background-color: rgba(255,255,0,0.33);
  margin: -0.2em;
  padding: 0.2em;
}
b.w-animated {
  transition: 1s all;
}
b.w-selected {
  box-shadow: 0 0 0 1000em rgba(0, 0, 0, 0.5);
  outline: 0.1em solid rgba(200,200,0,0.8);
  /* box-shadow: 0 0 2px rgba(0,0,0,0.5); */
}
b.w-highlighted {
  transform: scale(2);
}

.frame-fitToScreenWidth {
  box-shadow: inset 0 0 8px rgba(0, 0, 128, 0.65);
  outline: 1px solid rgba(128, 128, 128, 0.65);
}

.zoomControl {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 15px;
  transition: all 0.5s;
}
.frame-typeVariableObject .zoomControl {
  bottom: 32px;
}
.container-hiddenArrows .zoomControl {
  transform: translate(0px, 90px);
}
.zoomControl_button {
  display: inline-block;
  background-color: #0002;
  color: #fffa;
  border: none;
  font-size: 16px;
  padding: 6px 10px;
  margin: 1px;
  text-align: center;
  border-radius: 0;
}
.zoomControl_button:hover {
  background-color: #0004;
  color: #fffc;
}
.zoomControl_button:first-child {
  border-top-left-radius: var(--button-border-radius);
  border-bottom-left-radius: var(--button-border-radius);
}
.zoomControl_button:last-child {
  border-top-right-radius: var(--button-border-radius);
  border-bottom-right-radius: var(--button-border-radius);
}

.simpleArticle_content {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  vertical-align: middle;

  min-width: 800px;
  width: 50em;
  max-width: calc(100vw - 8px) !important;

  margin: 0;
  padding: 16px 64px;

  border: 1px solid var(--lines-color);
  background-color: white;
  color: black;

  text-align: left;
  font-family: TReaderEasyReadingFont, Roboto, Helvetica, Arial, sans;
  font-size: 16px;
  line-height: var(--def-line-height);

  word-wrap: break-word;
}
@media (max-width: 700px) {
  .simpleArticle_content {
    min-width: auto;
    padding: 8px 16px;
  }
}
.trioboThemeDark .simpleArticle_content {
  background-color: black;
  color: white;
}

.frame-typeComponent .ted {
  border: 0px none;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  width: 100%;
  min-width: initial;
  max-width: initial;
  font-weight: 300;
}

.ted {

}
.ted p {
  margin: 0.5em 0;
}
.ted p.perex {
  margin: 1em 0;
  font-weight: 300;
  font-size: 120%;
  text-transform: uppercase;
  line-height: var(--def-line-height);
}
.ted h1 {
  font-weight: bold;
  font-size: 200%;
  line-height: 120%;
  margin: 1em 0 0.5em;
}
.ted h1:first-child {
  margin-top: 0;
}
.ted h2 {
  font-weight: bold;
  font-size: 150%;
  line-height: 120%;
  margin: 1em 0 0.5em;
}
.ted h3 {
  font-weight: bold;
  font-size: 120%;
  line-height: 120%;
  margin: 1em 0 0.5em;
}
.ted b {
  font-weight: bold;
}
.ted i {
  font-style: italic;
}
.ted a {
  text-decoration: none;
  border-bottom: 1px dotted var(--highlighting-color);
  color: var(--highlighting-color);
}
.ted blockquote {
  background-color: var(--gray-d);
  border-left: 0.5em solid var(--gray-8);
  padding: 0.5em 1em;
  margin: 0.5em 0;
}
.ted .ted_image img {
  width: 100%;
}
.ted ul {
  margin: 0.5em 0;
  list-style: initial;
  padding: 0 0 0 1em;
}
.ted li {
  padding: 0;
  margin: 0;
}
.ted ul>ul {
  margin: 0;
}


.articleControlPanel {
  float: right;
  text-align: right;
  display: block;
}
.articleControlPanel .mButton {
  border: 1px solid var(--highlighting-color);
  background-color: var(--background-color);
  color: var(--highlighting-color);
  margin: 2px 0;
  display: block;
  padding: 4px 8px;
}
.articleControlPanel .mButton i {
  font-style: initial;
}

.articleNavigationBar {
  background-color: var(--background-color);
  color: var(--text-color);
  box-sizing: border-box;
  padding: 1em 0;
}

.articleNavigationBar_line {
}
.articleNavigationBar_line-top {
  border-top: 1px solid var(--highlighting-color);
  border-bottom: 1px solid var(--highlighting-color);
  padding: 0.5em 0;
}
.articleNavigationBar_line-bottom {
  padding: 1em 0;
  text-align: center;
}

.articleNavigationBar_part {
  display: inline-block;
  padding: 0.2em;
  box-sizing: border-box;
  vertical-align: top;
}

.articleNavigationBar_part-left,
.articleNavigationBar_part-right {
  width: 50%;
}
.articleNavigationBar_part-right {
  text-align: right;
}

.articleNavigationBar_articles {
  border: 1px solid var(--lines-color);
  width: 20em;
  max-width: 100%;
  display: inline-block;
  position: relative;
  margin: 0.5em 0;
  line-height: 0;
}
.articleNavigationBar_articleThumbnail {
  font-size: 0;
  width: 50%;
  display: inline-block;
}
.articleNavigationBar_articleThumbnail img {
  width: 100%;
}

.articleNavigationBar_prevNextText {
  /* font-size: 80%; */
  font-weight: 300;
}


.articleNavigationBar_buttons .issueButtonsBar_button {
  margin: 2px auto;
  max-width: 80%;
}
@media (min-width: 699px) {
  .articleNavigationBar_buttons {
    display: flex;
    justify-content: center;
  }
  .articleNavigationBar_buttons .issueButtonsBar_button {
    flex: 0 1 40%;
    border-radius: 0;
    margin: 0 1px 0 0;
    max-width: 164px;
  }
  .articleNavigationBar_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);
  }
  .articleNavigationBar_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;
  }
}



.articlesReader {
  background-color:#444;
}
.articlesReader_containers {
  width: 100%;
  height: 100%;
  position: relative;
}
.articlesReader_containers-hidden {
  display: none;
}


.articlesReader_controlButton {
  position: absolute;
  color: #eee;
  padding: 2em 0.1em;
  border: 0 none;

  background-color: #000a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--area-border-radius);
  transition: all 0.5s;
  width: 3em;
  text-align: center;
  margin: 0;
}
.articlesReader_controlButton:focus, .articlesReader_controlButton:hover {
  color: #eee;
  background-color: #000a;
}
.layoutSize1 .articlesReader_controlButton:hover,
.layoutSize2 .articlesReader_controlButton:hover {
  color: var(--highlighting-color);
  transform: none;
}
.articlesReader_controlButton-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  top: calc(50% - 3.5em);
  padding-left: 0.5em;
  left: 0;
  z-index: 2;
  transform: translate(-0.4em, 0);
}
.articlesReader_controlButton-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  top: calc(50% - 3.5em);
  padding-right: 0.5em;
  right: 0;
  z-index: 2;
  transform: translate(0.4em, 0);
}
.articlesReader_controlPanel {
  position: absolute;
  left: 1em;
  bottom: 1em;
  padding: 0.4em 1em;

  width: calc(100% - 4em);

  background-color: #000a;
  color: #eee;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--area-border-radius);

  transition: all 0.5s;
}
.articlesReader-hiddenArrows .articlesReader_controlButton-left {
  transform: translate(-100%, 0);
}
.articlesReader-hiddenArrows .articlesReader_controlButton-right {
  transform: translate(100%, 0);
}
.articlesReader-hiddenControlPanel .articlesReader_controlPanel {
  transform: translate(0, calc(1em + 100%));
}

.layoutSize0 .articlesReader_controlPanel {
  left: 2em;
  right: 2em;
  bottom: 0.5em;
  width: calc(100% - 6em);
}
.layoutSize0 .articlesReader_controlButton {
  top: auto;
  bottom: 0.5em;
  height: 4em;
  width: 2.2em;
  padding-top: 1em;
  padding-bottom: 1em;
}

.articlesReader-simulatedFullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.articlesReader_pager {
  display: inline-block;
  vertical-align: middle;
  height: 1em;
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
}
.articlesReader_pager .mSlider_bar {
  background-color: transparent;
  margin: 0;
  width: 100%;
  height: 100%;
}
.articlesReader_pagerPart {
  position: absolute;
  top: 0.4em;
  height: 0.2em;
  background-color: #eee;
  cursor: pointer;
}
.articlesReader-searchMode .articlesReader_pagerPart:not(.articlesReader_pagerPart-withSearchResult) {
  background-color: #444;
}

.articlesReader_pager .mSlider_thumb {
  border-radius: 0;
  top: 0.4em;
  height: 0.2em;
  background-color: var(--highlighting-color);
  transition: all 0.30s ease;
  cursor: pointer;
}
.articlesReader_pager .mSlider_thumb:hover,
.articlesReader_pager .mSlider_thumb.mDragged {
  top: 0.3em;
  height: 0.4em;
}

.articlesReader_bottomRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.articlesReader_bottomRowPart {
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.5s;
}
.articlesReader_bottomRowPart-info {
  text-align: left;
  flex: 1; /* Rovnoměrně rostoucí */
}
.articlesReader_bottomRowPart-zoom {
  text-align: center;
  flex: 0 0 280px;
}
.articlesReader_bottomRowPart-buttons {
  text-align: right;
  flex: 1;
}
.layoutSize0 .articlesReader_bottomRowPart-info {
}
.layoutSize0 .articlesReader_bottomRowPart-zoom {
  flex: 0 0 52px;
}
.layoutSize0 .articlesReader_bottomRowPart-buttons {
}


.articlesReader_bottomRowButton {
  display: inline-block;
  vertical-align: middle;
  height: 2em;
  width: 2em;
  margin: 0 0 0 0.5em;
  padding: 0.5em;
  background-color: transparent;
  color: #eee;
  border: 0 none;
}
.articlesReader_bottomRowButton:focus {
  background-color: transparent;
  color: #eee;
}
.articlesReader_bottomRowButton:hover {
  background-color: transparent;
  color: var(--highlighting-color);
}
.articlesReader_bottomRowLogo {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;

  width: 70px;
  height: 20px;
  background-image: url('triobo.png');
  background-size: 70px 20px;
  opacity: 0.6;

  cursor: pointer;
}
.layoutSize0 .articlesReader_bottomRowLogo {
  display: none;
}

.articlesReader-fullscreen .articlesReader_bottomRowButton .fa-expand,
.articlesReader:not(.articlesReader-fullscreen) .articlesReader_bottomRowButton .fa-compress {
  display: none;
}

.articlesReader-fullscreen .articlesReader_headerPart-buttons {
  display: none;
}

.articlesReader_bottomRowButton-thumbnails .fa-minus,
.articlesReader_bottomRowButton-zoomOut:not(.articlesReader_bottomRowButton-thumbnails) .fa-th {
  display: none;
}

.articlesReader_bottomRowPart-zoom .articlesReader_bottomRowButton {
  margin: 0 0.5em;
}
.articlesReader_bottomRowPart-zoom .mSlider {
  display: inline-block;
  width: 200px;
  max-width: calc(100% - 6em);
  vertical-align: middle;
  padding-bottom: 0.9em;
}
.articlesReader_bottomRowPart-zoom .mSlider_bar {
  margin: 0.4em 0;
  width: 100%;
  background-color: #eee;
}
.articlesReader_bottomRowPart-zoom .mSlider_thumb {
  transform: translateX(-50%);
  background-color: #eee;
}
.articlesReader_bottomRowButton-content {
  width: auto;
  vertical-align: baseline;
}

.layoutSize0 .articlesReader_zoomSlider {
  display: none;
}
.layoutSize0 .articlesReader_bottomRowButton {
  margin: 0;
  padding: 0.5em 0.2em;
  width: 1.6em;
}
.layoutSize0 .articlesReader_bottomRowButton-content {
  width: auto;
}

.articlesReader_infoBar {
  display: inline-block;
  vertical-align: middle;
  font-size: 87.5%;
  padding-top: 0.2em;
}
.articlesReader_infoBar span {
  margin-right: 0.5em;
}
.articlesReader_bottomRowPart-info .articlesReader_bottomRowButton {
  margin: 0 0.5em 0 0;
}

.articlesReader_searchbar {
  display: none;
  vertical-align: middle;
}
.articlesReader_searchInputWrapper {
  display: inline-flex;
  align-items: center;
  vertical-align: bottom;
  width: calc(100% - 8.1em);
  border-radius: var(--area-border-radius);
  border: 1px solid var(--lines-color);
  background-color: var(--inputs-background);
  overflow: hidden;
}
.articlesReader_searchInputWrapper-focus {
  border-color: var(--highlighting-color);
}
.articlesReaderSearchInputWrapper_input {
  border: 0 none;
  border-radius: 0;
  background-color: transparent;
  vertical-align: bottom;
  width: 0;
  flex: 1 0 auto;
  padding: 0.15em 0 0.15em 0.5em;
  border-bottom-right-radius: 0;
  margin: 0;
}
.articlesReaderSearchInputWrapper_status {
  display: inline-block;
  justify-content: center;
  margin: 0;
  color: var(--inputs-color);
  padding: 0.15em 0.25em;
  box-sizing: border-box;
}
.articlesReaderSearchInputWrapper_status span {
  font-size: 70%;
}
.articlesReaderSearchInputWrapper_button {
  display: inline-block;
  vertical-align: bottom;
  width: 2em;
  margin: 0;
  padding: 0.25em;
  border: 1px solid var(--lines-color);
  border-radius: 0;
}
.articlesReader_bottomRowButton-search {
  margin-left: 0;
}
.articlesReaderSearchInputWrapper_button-searching .fa-search,
.articlesReaderSearchInputWrapper_button:not(.articlesReaderSearchInputWrapper_button-searching) .fa-circle-o-notch {
  display: none;
}

.articlesReader_controlButtons {
  display: inline-block;
}

.articlesReader-searchMode .articlesReader_controlButtons {
  width: 0%;
}
.articlesReader-searchMode .articlesReader_bottomRowPart-info,
.articlesReader-searchMode .articlesReader_bottomRowPart-zoom {
  flex: 0;
}
.articlesReader-searchMode .articlesReader_bottomRowPart-buttons {
  flex: 1;
}
.articlesReader-searchMode .articlesReader_searchbar {
  display: inline-block;
  width: 100%;
  max-width: 800px;
}


.articlesReader_thumbnail {
  position: absolute;
  transform: translateX(-50%);
  bottom: 3em;
  padding: 0.25em;
  line-height: 0;
  border-radius: var(--area-border-radius);
  box-shadow: 0 0 6px #0008;
  background-color: #000a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.30s;
  pointer-events: none;
}
.articlesReader_thumbnail-hidden {
  opacity: 0;
}
.articlesReader-hiddenArrows .articlesReader_thumbnail {
  display: none;
}

.articlesReaderThumbnail_pages {
  display: inline-block;
  line-height: var(--def-line-height);
  font-size: 87.5%;
  text-align: center;
  color: white;
}
.articlesReaderThumbnail_pages-hidden {
  display: none;
}
.articlesReaderThumbnail_articlesWrapper {
  white-space: nowrap;
}
.articlesReaderThumbnail_articleWrapper {
  display: inline-block;
  vertical-align: top;
}
.articlesReaderThumbnail_article {
  box-sizing: border-box;
  cursor: pointer;
  width: 6.25em;
}
.articlesReaderThumbnail_pages-twoUp .articlesReaderThumbnail_article {
  width: 12.5em;
}
.articlesReaderThumbnail_article-empty {
  width: 0px;
}
.articlesReaderThumbnail_article img {
  width: 100%;
}

.articlesReader_thumbnails {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 6em 0 4em;
  box-sizing: border-box;
  overflow-y: scroll;
  color: #eee;
}
.articlesReader-noHeader .articlesReader_thumbnails {
  padding-top: 1em;
}
.articlesReader_thumbnails-hidden {
  display: none;
}
.articlesReader_thumbnails .item_listOfLinkedArticles li a {
  color: #eee;
}
.articlesReader_thumbnails .item-article {
  padding: 8px;
}
.articlesReader_thumbnails .item_articles {
  border-color: transparent;
}
.articlesReader_thumbnails .component_title {
  display: none;
}

.articlesReader_thumbnailFooter {
  position: absolute;
  box-sizing: border-box;
  left: 0em;
  bottom: 0em;
  padding: 1em;

  width: 100%;

  background-color: #000a;
  color: #eee;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: all 0.5s;
}
.articlesReader_noFooter .articlesReader_thumbnailFooter {
  transform: translate(0, calc(1em + 100%));
}
.articlesReader_poweredBy {
  display: block;
  width: 16em;
  height: 1.5em;
  margin: 0 auto;
  background-image: url('powered_by_Triobo.png?20240215');
  background-size: 100% 100%;
  cursor: pointer;
}

.articlesReader_header {
  position: absolute;
  box-sizing: border-box;
  left: 0em;
  top: 0em;

  width: 100%;

  transition: all 0.5s;
}
.articlesReader-hiddenHeader:not(.articlesReader_forceHeader) .articlesReader_header {
  transform: translate(0, calc(-1em - 100%));
}
.articlesReader-noHeader .articlesReader_header {
  display: none;
}

.articlesReader_headerBar {
  padding: 1em;
  background-color: #000a;
  color: #eee;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.articlesReader_headerPart {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.articlesReader_headerPart-logo {
  width: 50%;
  height: 3em;
  cursor: pointer;
}
.articlesReader_headerPart-logo .tImage {
  width: 100%;
  height: 100%;
}
.articlesReader_headerPart-logo .tImage img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
}
.articlesReader_headerPart-buttons {
  width: 50%;
  text-align: right;
}
.layoutSize2 .articlesReader_headerPart-logo {
  width: 33%;
}
.layoutSize2 .articlesReader_headerPart-buttons {
  width: 67%;
}
.articlesReader_logo-text {
  padding: 0.4em 0;
  font-size: 1.6em;
}

.articlesReader_headerButton {
  display: inline-block;
  vertical-align: middle;
  height: 2em;
  margin: 0 0 0 0.5em;
  padding: 0.5em;
  background-color: transparent;
  color: #eee;
  border: 0 none;
}
.articlesReader_headerButton:focus {
  background-color: transparent;
  color: #eee;
}
.articlesReader_headerButton:hover {
  background-color: transparent;
  color: var(--highlighting-color);
}

.trioboIconRZHidden .articlesReader_headerButton-user {
  display: none;
}
#desktop.trioboIconUserLoggedIn .articlesReader_headerButton-user .login,
#desktop:not(.trioboIconUserLoggedIn) .articlesReader_headerButton-user .member {
  display: none;
}
.articlesReader_headerPart-buttons .menuItem-search {
  display: none;
}

.articlesReader_navigationBar {
  padding: 0.3em 0.75em 0.3em;
  background-color: transparent;
  color: #eee;
  z-index: -1;
  width: auto;
  display: inline-block;
  background-color: #4448;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.25s, opacity 0.25s;
  overflow-y: auto;
}
.container-webPage {
  overflow: hidden;
}
.container:focus {
  outline: 0px none;
}
.tReader_screenContent-containersShifted .container {
  transition: none 0s;
}
.tReader_screenContent-containersNoScroll .container {
  overflow-y: hidden;
}
.tReader_screenContent-isZoomed .container {
  cursor: grab;
}
.tReader_screenContent-containersPan .container {
  cursor: grabbing;
}

.container-hiddenLeft {
  transform: translate(-100%, 0);
}
.container-hiddenRight {
  transform: translate(100%, 0);
}
.container-overlay {
  background-color: transparent;
  z-index: 1;
}
.container-overlayHidden {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
}

.container-simpleArticle {
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
  z-index: 1;
  box-sizing: border-box;
}
.trioboThemeDark .container-simpleArticle {
  background-color: rgba(0, 0, 0, 0.85);
}
.container-simpleArticleHidden {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
}
.container_articlesWrapper {
  margin: 0 auto;
}
.container-overlay .container_articlesWrapper {
  background-color: transparent;
}
.container-simpleArticle .container_articlesWrapper {
  padding: 4em 0;
  background-color: transparent;
  width: 100%;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.container-simpleArticle:before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 0px;
  height: 100%;
  background-color: transparent;
}
.trioboSearchbarShown .container-simpleArticle .container_articlesWrapper {
  margin-bottom: 8em;
}
.container-simpleArticle .article {
  background-color: transparent;
}


.container-isZoomable {
  overflow: hidden;
}
.container-isZoomable .container_articlesWrapper {
  position: absolute;
}
.container-centerfold .article {
  height: 100%;
  width: 50%;
  display: inline-block;
  vertical-align: top;
}
.article {
  position: relative;
  background-color: #fff;
  color: #000;
  transition: opacity 0.5s;
  height: 100%;
}
.article-isLoading {
  opacity: 0;
}
.article-empty {
  height: 100%;
  border: 4px dashed var(--gray-a);
  box-sizing: border-box;
  background-color: var(--gray-e);
  text-align: center;
}
.article-dimmedOut:after {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5)
}
.container_articlesWrapper .article-empty:before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 0px;
  height: 100%;
  background-color: #0000;
}
.emptyArticleBox {
  display: inline-block;
  width: 50%;
  padding: 4em;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.3s transform;
}
.emptyArticleBox:hover {
  transform: scale(1.02);
}
.emptyArticleBox .tImage {
  width: 100%;
  height: 4em;
  margin-bottom: 1em;
}
.emptyArticleBox .tImage img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.emptyArticleBox_text {
  font-weight: 300;
}
@media (max-width: 899px) {
  .emptyArticleBox {
    padding: 0;
  }
}




.container_noWordsToHighlightMessage {
  position: absolute;
  bottom: 5.8em;
  width: 80%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  background-color: #ffa;
  padding: 0.5em 1em;
}

.eshopCategoryHeaderBar {
}

.eshopCategoryHeaderBar_title {
  font-size: 150%;
  cursor: pointer;
}
.eshopCategoryHeaderBar_description {
  margin: 4px 0 8px;
  font-size: 87.5%;
  font-weight: 300;
}




.item.item-eshopCategory {
  vertical-align: top;
  margin: 0;
}
.eshopCategory {
  padding: 0px;
  text-align: left;
  margin: 16px 0;
  line-height: var(--def-line-height);
  padding: 6px;
  vertical-align: top;
}
.eshopCategory_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 120%;
  line-height: var(--def-line-height);
}
.eshopCategory_thumbnail {
  position: relative;
  margin: 8px auto;
  transition: 0.5s transform;
}
.item:hover .eshopCategory_thumbnail {
  transform: scale(1.02);
}
.eshopCategory_description {
  font-weight: 300;
  height: 40px;
}

.thumbnail-eshopCategory {
  padding-bottom: 75%;
}
.thumbnail-eshopCategory img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eshopCategory_onSaleBox {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.3em;
  background-color: red;
  color: white;
}
.thumbnail_wrapper .eshopCategory_onSaleBox {
  font-size: 14px;
}

.item.item-eshopItem {
  vertical-align: top;
  border-right: 1px dotted var(--lines-color);
  border-bottom: 1px dotted var(--lines-color);
  margin: 0;
}
.eshopItem {
  padding: 0px;
  text-align: left;
  margin: 16px 0;
  line-height: var(--def-line-height);
  padding: 6px;
  vertical-align: top;
}
.eshopItem_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 120%;
  line-height: var(--def-line-height);
  max-height: 2.6em;
}
.eshopItem_thumbnail {
  position: relative;
  margin: 8px auto;
  transition: 0.5s transform;
}
.item:hover:not(.item-disabled) .eshopItem_thumbnail {
  transform: scale(1.02);
}
.item-disabled .eshopItem_buttons {
  opacity: 0;
}

.eshopItem_description {
  font-weight: 300;
  height: 40px;
}
.eshopItem_buttons {
  margin: 8px 0;
  text-align: center;
}
.eshopItem_button {
  width: auto;
}
.eshopProductDetails .eshopItem_button {
  pointer-events: all;
}
.eshopItem_infoText {
  margin: 1em 0;
  font-weight: 300;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.thumbnail-eshopItem {
  padding-bottom: 100%;
}
.thumbnail-eshopItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-eshopItem.thumbnail-noThumbnail {
  color: var(--gray-b);
  text-align: center;
}
.thumbnail-eshopItem.thumbnail-noThumbnail i {
  margin-top: 8px;
  font-size: 120px;
}

.tShopCart_col .thumbnail-eshopItem.thumbnail-noThumbnail i {
  font-size: 40px;
}

.eshopItem_thumbnail .thumbnail-eshopItem {
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
}
.eshopItem_onSaleBox {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.3em;
  background-color: red;
  color: white;
}
.thumbnail_wrapper .eshopItem_onSaleBox {
  font-size: 14px;
}

.eshopItem_price {
  border: 1px dotted var(--highlighting-color);
  background-color: var(--inputs-background);
  display: inline-block;
  padding: 0.5em;
  margin: 1em 0;
  font-weight: bold;
  color: var(--highlighting-color);
}
.eshopItem_price-onSale {
  display: inline-block;
  text-decoration: line-through;
  opacity: 0.8;
  margin-right: 0.5em;
}

.eshopProductDetails_buttons {

}
.eshopProductDetails_buttons .mButton {
  margin-left: 0;
  margin-right: 0.5em;
}
.eshopProductDetails_variantsTitle {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
}
.eshopProductDetails_variantsInfo {
  font-size: 13px;
  margin-top: 8px;
}
.eshopItemVariantsTable {
  font-size: 15px;
  border: 1px solid var(--lines-color);
  margin: 0 0 16px 0;
}
.eshopItemVariantsTable_tr {
  cursor: pointer;
}
.eshopItemVariantsTable_tr:nth-child(even) {
  background-color: rgba(128,128,128,0.1);
}
.eshopItemVariantsTable_tr:hover {
  background-color: rgba(128,128,128,0.2);
}
.eshopItemVariantsTable td {
  padding: 0.5em;
  border: 1px solid var(--lines-color);
  vertical-align: middle;
}
.eshopItemVariantsTable_td-checked .mCheckbox {
  pointer-events: none;
  padding: 0;
}
.eshopItemVariantsTable_td-checked .mCheckbox_checkbox {
  margin-right: 0;
}
.eshopItemVariantsTable_td-title {
  text-align: right;
}
.eshopItemVariantsTable td.eshopItemVariantsTable_td-buy {
  padding: 0;
}
.eshopItemVariantsTable_td-buy .mButton {
  margin: 0;
  border-radius: 0;
  padding: 4px 6px;
}


.eshopItemVariant_stockInfo {
  font-weight: bold;
}
.eshopItemVariant_stockInfo-onStock {
  color: #0a0;
}
.eshopItemVariant_stockInfo-onOrder {
  color: #f80;
}

.issueDetail {
  width: 500px;
}
.issueDetail_userInfo {
  border: 1px solid #0a0;
  background-color: #cdc;
  color: #444;
  padding: 4px 8px;
  margin: 4px 0;
}
.issueDetail_userInfo-notLoggedIn {
  border-color: #d00;
  background-color: #dcc;
  color: #444;
}
.issueDetail_userLogIn {
  float: right;
  color: #d00;
}
.issueDetail_column {
  display: inline-block;
  vertical-align: top;
  padding: 8px;
  box-sizing: border-box;
}
.issueDetail_column-left {
  width: 30%;
}
.issueDetail_column-right {
  width: 70%;
}

.issueDetail_top .thumbnail {
  margin: 2px 0px;
  box-sizing: border-box;
  cursor: pointer;
}
.issueDetail_top .thumbnail img {
  width: 100%;
}
.issueDetail_thumbnailTitle {
  text-align: left;
  font-weight: bold;
  line-height: 120%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.issueDetail_thumbnailDate {
  text-align: left;
  font-weight: 300;
  opacity: 0.8;
  line-height: 120%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.issueDetail_header {
  text-align: left;
  font-size: 120%;
  line-height: 120%;

  margin: 16px 0 8px;
}
.issueDetail_header:first-child {
  margin-top: 0px;
}
.issueDetail_info {
  font-weight: 300;
  margin-bottom: 8px;
  font-size: 90%;
}

.issueDetail_buttons {
}
.issueDetail_buttons .mButton {
  margin-left: 0px;
  margin-right: 8px;
}

.article_paidEasyReading {
  padding: 1em;
}
.article_paidEasyReading .issueDetail_column-left {
  padding-left: 0;
}
.article_paidEasyReading h1 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 16px;
}
.article_paidEasyReading .issueDetail_buttons .mButton {
  font-size: 87.5%;
}

.issueDetail_bottom {
  width: 100%;
  margin-top: 8px;
  border-top: 1px solid var(--highlighting-color);
  padding: 16px 8px 8px;
  position: relative;
  box-sizing: border-box;
}
.issueDetail_buttonPrevArticle {
  float: left;
  padding: 8px 16px;
  margin: 4px 0 16px !important;
}
.issueDetail_buttonNextArticle {
  float: right;
  padding: 8px 16px;
  margin: 4px 0 16px !important;
}

.issueTagThumbnail {
  line-height: 1;
  font-size: 0px;
}
.issueTagThumbnail_issueWrapper {
  width: 20%;
  display: inline-block;
  margin: 0;
  position: relative;
}
.issueTagThumbnail_issueWrapper img {
  width: 100%;
}

.itemGalleryWrapper {
  margin: 16px -4px 0;
  border-top: 1px solid var(--lines-color);
  padding-top: 12px;
}
.itemGallery_image {
  width: calc(33.333% - 8px);
  display: inline-block;
  margin: 4px;
  cursor: pointer;
  transition: 0.5s transform;
}
.itemGallery_image:hover {
  transform: scale(1.02);
}

.thumbnail-itemSource {
  padding-bottom: 100%;
}
.thumbnail-itemSource img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oldArticle {
  width: 768px;
  font-size: 0px;
  margin: 0 auto;
  position: relative;
}
.oldArticle_initThumbnail {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.oldArticle_content {
  position: absolute;
  top: 0;
  left: 0;
  transition: 1s opacity;
}
.oldArticle_content-faded {
  opacity: 0;
}

.laySourcesLoader {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 8px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  z-index: 10000;
  text-align: right;
  width: 72px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.laySourcesLoader i {
  float: left;
}

.laySourcesLoader.hidden {
  opacity: 0;
}

.group::-webkit-scrollbar {
  background:transparent;
  width: 10px;
  height: 10px;
}

.group::-webkit-scrollbar-track-piece {
  background-color: transparent;
}
 
.group::-webkit-scrollbar-thumb {
   border-radius: 5px;
   background-color:rgba(160,160,160,0.5);
}
.group::-webkit-scrollbar-corner {
  background-color:transparent;
}


/* triobo articles objects */
.objekt {
  box-sizing: border-box;
  position: absolute;
  outline-style: solid;
  outline-width: 0px;
  outline-color: #aaa;
  -webkit-transform-style: flat;
  transform-style: flat;
  overflow: hidden;
  cursor: inherit;
  pointer-events: none;
}

.objekt div {
  white-space: normal;
  word-wrap: break-word;
  unicode-bidi: embed;
  -webkit-line-break: after-white-space;
  -webkit-nbsp-mode: normal;
  -webkit-font-variant-ligatures: normal;
  font-variant-ligatures: normal;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "kern";
  font-feature-settings: "kern";
  -webkit-column-fill: auto;
  column-fill: auto;
}

.objekt._tg_fix {
  position: fixed;
}

.objekt img {
  position: absolute;
  left: 0px;
  top: 0px;
}

.objekt .cropfix {
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

._tg_obj {
  display: block;
  position: relative;
}

._tg_imx {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

._tg_imx img {
  display: block;
  position: absolute;
}

.objekt div {
  border-width: 0px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0);
}

.objekt span {
  border-width: 0px;
  border-style: solid;
}

.objekt ul {
  list-style-position: outside;
  padding-left: 1.4em;
  border: 0px solid;
}

.objekt a:link {
  color: inherit;
  text-decoration: inherit;
}

.objekt a:visited {
  color: inherit;
  text-decoration: inherit;
}

.objekt a:hover {
  color: inherit;
  text-decoration: inherit;
}

.objekt a:active {
  color: inherit;
  text-decoration: inherit;
}

.objekt.verti > div {
  display: table-cell;
  height: inherit;
  width: inherit;
}

.objekt video.loading {
  opacity: 0;
}

.objekt .photo360 .threedee {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*.objekt .photo360 .sphere .face {
  box-shadow: inset 0 0 0 1px #0f0;
  mask-image: none !important;
  backface-visibility: visible;
}*/

.objekt  .photo360control {
  position: absolute;
  background-color: rgba(200, 200, 200, 0.2);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.objekt  .photo360control:hover {
  background-color: rgba(200, 200, 200, 0.3);
}

.objekt .photo360control.rightPanel {
  right: 24px;
  bottom: 24px;
  width: 86px;
  height: 86px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.objekt .photo360control.leftPanel {
  left: 24px;
  bottom: 24px;
  width: 44px;
  height: 86px;
}

.objekt .photo360control div {
  position: absolute;
  width: 42px;
  height: 42px;
  text-align: center;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.3);
}

.objekt .photo360control div:hover {
  color: rgba(255, 255, 255, 0.8);
}

.objekt .photo360control div.up {
  top: 0px;
  left: 44px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.objekt .photo360control div.right {
  top: 44px;
  left: 44px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.objekt .photo360control div.down {
  top: 44px;
  left: 0px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.objekt .photo360control div.left {
  top: 0px;
  left: 0px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.objekt .photo360control div.zoomin {
  top: 0px;
  left: 0px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.objekt .photo360control div.zoomout {
  top: 44px;
  left: 2px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.ruka, .isActive, .objekt video, .objekt audio, .objekt._tg_covers, .objekt.hasAction, .objekt iframe, .objekt.photo360object, .objekt .googlemaps {
  cursor: pointer;
  pointer-events: auto;
}

.objekt .formObjectCheckbox div {
  display: table;
  width: 100%;
  height: 100%;
}
.objekt .formObjectCheckbox div div {
  display: table-cell;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

.objekt .formObjectNumber div {
  width: 100%;
  height: 100%;
  position: relative;
  display: table;
}
.objekt .formObjectNumber div div {
  position: absolute;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.objekt .formObjectNumber.horizontal .minus {
  top: 0px;
  left: 0px;
  width: 33%;
  height: 100%;
}
.objekt .formObjectNumber.horizontal .value {
  top: 0px;
  left: 33%;
  width: 33%;
  height: 100%;
}
.objekt .formObjectNumber.horizontal .plus {
  top: 0px;
  right: 0px;
  width: 33%;
  height: 100%;
}
.objekt .formObjectNumber.vertical .minus {
  top: 67%;
  left: 0px;
  width: 100%;
  height: 33%;
}
.objekt .formObjectNumber.vertical .value {
  top: 33%;
  left: 0px;
  width: 100%;
  height: 33%;
}
.objekt .formObjectNumber.vertical .plus {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 33%;
}
.objekt .formObjectNumber.onright .minus {
  bottom: 0px;
  right: 0px;
  width: 50%;
  height: 50%;
}
.objekt .formObjectNumber.onright .value {
  top: 0%;
  left: 0px;
  width: 50%;
  height: 100%;
}
.objekt .formObjectNumber.onright .plus {
  top: 0px;
  right: 0px;
  width: 50%;
  height: 50%;
}

._tg_note {
  position: absolute;
  -webkit-transform-style: flat;
  transform-style: flat;
  overflow: hidden;
  cursor: pointer;
}

.stranka .group {
  -webkit-overflow-scrolling: touch;
}


/* animations */

._tg_anim_fadeOut {
  opacity: 0;
}

._tg_anim_foldDown {
  opacity: 0;
  -webkit-transform: translateY(50%) scale(0.1) rotateX(80deg) !important;
  transform: translateY(50%) scale(0.1) rotateX(80deg) !important;    
}

._tg_anim_dimmedLeft {
  opacity: 0.5;
  -webkit-transform: translateX(-32px) !important; 
  transform: translateX(-32px) !important;
}

._tg_anim_dimmedRight {
  opacity: 0.5;
  -webkit-transform: translateX(32px) !important;
  transform: translateX(32px) !important;
}

._tg_anim_newsPaper {
  -webkit-transform: scale(0.001) rotateZ(900deg) !important;  
  transform: scale(0.001) rotateZ(900deg) !important;  
}

@-webkit-keyframes _tg_key_infSpinRight {
  0%  {-webkit-transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg);}   
}
@keyframes _tg_key_infSpinRight {
  0%  {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}   
}

@-webkit-keyframes _tg_key_infSpinLeft {
  0%  {-webkit-transform: rotate(0deg);}
  100% {-webkit-transform: rotate(-360deg);}   
}
@keyframes _tg_key_infSpinLeft {
  0%  {transform: rotate(0deg);}
  100% {transform: rotate(-360deg);}   
}

@-webkit-keyframes _tg_key_infSpinX {
  0%  {-webkit-transform: rotateX(0deg);}
  100% {-webkit-transform: rotateX(360deg);}   
}
@keyframes _tg_key_infSpinX {
  0%  {transform: rotateX(0deg);}
  100% {transform: rotateX(360deg);}   
}

@-webkit-keyframes _tg_key_infSpinY {
  0%  {-webkit-transform: rotateY(0deg);}
  100% {-webkit-transform: rotateY(360deg);}   
}
@keyframes _tg_key_infSpinY {
  0%  {transform: rotateY(0deg);}
  100% {transform: rotateY(360deg);}   
}

@-webkit-keyframes _tg_key_infSpinXandWait {
  0%  {-webkit-transform: rotateX(0deg);}
  10% {-webkit-transform: rotateX(360deg);}   
  100% {-webkit-transform: rotateX(360deg);}   
}
@keyframes _tg_key_infSpinXandWait {
  0%  {transform: rotateX(0deg);}
  10% {transform: rotateX(360deg);}   
  100% {transform: rotateX(360deg);}   
}

@-webkit-keyframes _tg_key_infSpinYandWait {
  0%  {-webkit-transform: rotateY(0deg);}
  10% {-webkit-transform: rotateY(360deg);}   
  100% {-webkit-transform: rotateY(360deg);}   
}
@keyframes _tg_key_infSpinYandWait {
  0%  {transform: rotateY(0deg);}
  10% {transform: rotateY(360deg);}   
  100% {transform: rotateY(360deg);}   
}

@-webkit-keyframes _tg_key_infHorizShake {
  25%  {-webkit-transform: translateX(2px);}
  75%  {-webkit-transform: translateX(-2px);}
}
@keyframes _tg_key_infHorizShake {
  25%  {transform: translateX(2px);}
  75%  {transform: translateX(-2px);}
}

@-webkit-keyframes _tg_key_infDimming {
  50%  {opacity: 0;}
}
@keyframes _tg_key_infDimming {
  50%  {opacity: 0;}
}

@-webkit-keyframes _tg_key_infFlashing {
  0%   {opacity: 1;}
  49%  {opacity: 1;}
  50%  {opacity: 0;}
  99%  {opacity: 0;}
}
@keyframes _tg_key_infFlashing {
  0%   {opacity: 1;}
  49%  {opacity: 1;}
  50%  {opacity: 0;}
  99%  {opacity: 0;}
}

@-webkit-keyframes _tg_key_infPulse {
  0%  {-webkit-transform: scale(1);}
  5%  {-webkit-transform: scale(1.1);}
  10%  {-webkit-transform: scale(1);}
  15%  {-webkit-transform: scale(1.1);}
  20%  {-webkit-transform: scale(1);}
}
@keyframes _tg_key_infPulse {
  0%  {transform: scale(1);}
  5%  {transform: scale(1.1);}
  10%  {transform: scale(1);}
  15%  {transform: scale(1.1);}
  20%  {transform: scale(1);}
}

@-webkit-keyframes _tg_key_infRainbow {
  0%   {background-color: rgb(255, 0, 0);}
  16%   {background-color: rgb(255, 255, 0);}
  33%   {background-color: rgb(0, 255, 0);}
  50%   {background-color: rgb(0, 255, 255);}
  66%   {background-color: rgb(0, 0, 255);}
  83%   {background-color: rgb(255, 0, 255);}
  100%  {background-color: rgb(255, 0, 0);}
}
@keyframes _tg_key_infRainbow {
  0%   {background-color: rgb(255, 0, 0);}
  16%   {background-color: rgb(255, 255, 0);}
  33%   {background-color: rgb(0, 255, 0);}
  50%   {background-color: rgb(0, 255, 255);}
  66%   {background-color: rgb(0, 0, 255);}
  83%   {background-color: rgb(255, 0, 255);}
  100%  {background-color: rgb(255, 0, 0);}
}


/* animations end */


.variableObject {
  -webkit-perspective: 1024px;
  perspective: 1024px;
}

.galleryContainer {
  width: 100%;
  height: 100%;
  background-color: black;
  color: black;
  -webkit-perspective: 1024px;
  perspective: 1024px;
}

.galleryImageContainer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.galleryImageContainer img {
  position: absolute;
}

.galleriesInfo {
  position: absolute;
  bottom: 32px;
  width: 100%;
}

.galleriesInfo p {
  margin: 0px;
  border: 0px solid;
}

.galleriesButton {
  position:absolute;
  z-Index:200;
  cursor: pointer;  
}

.VOdotsBar {
  text-align: center;
  height: 16px;
  position: absolute;
  width: 100%;
  bottom: 16px;
}

.VOdot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin: 5px 4px;
  opacity: 0.3;
}

.VOdot.active {
  opacity: 1;
}

.hasAction {
  cursor: pointer;
}

.mRadioRow-variants {
  margin: 0;
  flex-wrap: wrap;
}
.buyProductDialog_variantInfo {
  margin: 0.5em 0;
}
.buyProductDialog_stockInfo {
  font-weight: bold;
}
.buyProductDialog_stockInfo-onStock {
  color: #0a0;
}
.buyProductDialog_stockInfo-onOrder {
  color: #f80;
}
.buyProductDialog_onOrderInfo {
  font-size: 80%;
}
.buyProductDialog_price {
  font-weight: bold;
  margin: 0.25em 0;
}
.mRadioRow-variants .mRadioRow_item {
  position: relative;
  flex: 1 0 4em;
  border: 1px solid var(--lines-color);
  margin-top: -1px;
  margin-right: -1px;
}
.mRadioRow-variants .mRadioRow_item-onOrder:not(.mRadioRow_item-on) {
  opacity: 0.5;
}




.floatingSettings_wrapper {
  pointer-events: none;
  position: absolute;
  bottom: 2em;
  left: 2em;
  width: calc(100% - 2em);
  height: 4em;
  z-index: 100;
  transition: 0.5s transform;
}
.floatingSettings_wrapper-hidden {
  transform: translateY(6em);
}

.floatingSettingsMenu_wrapper {
  position: absolute;
  left: 1.5em;
  width: calc(100% - 1.5em);
  height: 100%;
  overflow: hidden;
}

.floatingSettingsMenu {
  transition: 0.5s transform;
  position: absolute;
  pointer-events: all;
  top: 0;
  left: calc(1.5em - 8px);
  width: 260px;
  box-sizing: border-box;
  border: 1px solid var(--highlighting-color);
  background-color: var(--opposite-color);
  border-radius: var(--area-border-radius);
  overflow: hidden;
  box-shadow: 0 0 6px var(--gray-0-50);
}

.floatingSettingsMenu-hidden {
  transform: translateX(calc(-100% - 1.5em));
}
.floatingSettingsMenu .mRadioRow {
  display: flex;
  overflow: hidden;
  border: 0 none;
  border-radius: 0;
}
.floatingSettingsMenu .mRadioRow_item {
  flex: 1 1 3em;
  padding: 0;
  border-radius: 0;
  height: 2em;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  border: 0 none;
  border-left: 1px solid var(--highlighting-color);
}
.floatingSettingsMenu .mRadioRow_item:first-child {
  border-left: 0 none;
}
.mRadioRow-fontSize .mRadioRow_item {
  border-bottom: 1px solid var(--highlighting-color);
}
.mRadioRow-fontSize .mRadioRow_item span {
  vertical-align: middle;
}
.mRadioRow-lineHeight .mRadioRow_item {
}

.floatingSettingsButton {
  position: absolute;
  top: 0.5em;
  color: var(--opposite-color);
  background-color: var(--highlighting-color);
  box-sizing: border-box;
  border-radius: var(--area-border-radius);
  width: 3em;
  height: 3em;
  pointer-events: all;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 0 8px var(--gray-0-50);
}


.floatingSettingsMenu_lineHeightExample {
  display: inline-block;
  width: 1em;
  border-top: 1px solid currentcolor;
  border-bottom: 1px solid currentcolor;
  margin: 7px;
  vertical-align: middle;
}

.subscriptionThumbnail {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  white-space: nowrap;
  perspective: 300px;
}
.subscriptionThumbnail_digitalImage {
  display: none;
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
}
.thumbnail-eshopPackage.thumbnail-noThumbnail {
  color: var(--gray-b);
  text-align: center;
}
.thumbnail-eshopPackage.thumbnail-noThumbnail i {
  margin-top: 8px;
  font-size: 120px;
}
.subscriptionThumbnail_digitalSpaceDesktop {
  display: none;
  position: absolute;
  box-sizing: border-box;
  left: 19%;
  top: 9.5%;
  width: 72.5%;
  height: 51%;
  padding: 0 22%;
  background-color: #444;
  overflow: hidden;
}
.subscriptionThumbnail_digitalSpaceTablet {
  display: none;
  position: absolute;
  left: 7.4%;
  top: 45.5%;
  width: 20.2%;
  height: 36.5%;
  overflow: hidden;
}
.subscriptionThumbnail_digitalSpaceMobile {
  display: none;
  position: absolute;
  left: 31.4%;
  top: 64%;
  width: 7.4%;
  height: 17.4%;
  overflow: hidden;
}
.subscriptionThumbnail-landscape .subscriptionThumbnail_digitalSpaceDesktop {
  left: 20%;
  top: 9.5%;
  width: 72%;
  height: 51%;
  padding: 0;
  background-color: transparent;
}
.subscriptionThumbnail-landscape .subscriptionThumbnail_digitalSpaceTablet {
  left: 7.4%;
  top: 45%;
  width: 20.2%;
  height: 16.5%;
  padding: 8% 0;
  background-color: #444;
}
.subscriptionThumbnail-landscape .subscriptionThumbnail_digitalSpaceMobile {
  left: 31.4%;
  top: 64%;
  width: 7.4%;
  height: 10%;
  padding: 3% 0;
  background-color: #444;
}


.subscriptionThumbnail .tImage {
  width: 100%;
  height: 100% !important;
  padding-bottom: 0 !important;
}
.subscriptionThumbnail .tImage .tImage_image {
  position: relative;
  width: 100%;
  height: 100%;
}
.subscriptionThumbnail_printSpace {
  display: none;
  position: absolute;
  left: 68%;
  top: 36%;
  width: 30%;
  height: 55%;
  box-shadow: 0.2em 0.2em 0.4em rgba(0, 0, 0, 0.5);
  transform: rotateY(-11deg) rotateZ(8deg);
  overflow: hidden;
}
.subscriptionThumbnail-print:not(.subscriptionThumbnail-digital) .subscriptionThumbnail_printSpace {
  left: 28%;
  top: 0%;
  width: 46%;
  height: 86%;
}
.subscriptionThumbnail_special {
  display: none;
  position: absolute;
  right: 78%;
  top: 12%;
  width: 15%;
  height: 10%;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  border: 1px solid #a90;
  border-radius: 3px;
  background: linear-gradient(to bottom, rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%);
}
.subscriptionThumbnail_special:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: " ";
  opacity: 0.4;
  background-size: 60% 60%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATEAAACLCAYAAAAJQ67PAAAOe0lEQVR4nO3deYxdZRnH8W8XKKW0FNqyI7IvFllEUFCglp1CBRUN+IcSSDTGKDHRKIliNEb/EA1oCBEkUdGIrKWlQKEMpQvaUqVsrZSlIEgtlBboOl3845kpw+3cO3c55/2dc+/vk9z0Tuf2PO/cmXn6Puc953kH8b5hwK5orAPeFcVWGgXsJIr9HrC2gdePBnbMaSy1vAOsTxBH9fWpbSJ+DlK8x7kY1Of54cBi0TgeA04VxVZ6AjheFPt84L4GXt8FnJbPUGq6ErgpQZwuNF9fUWwlJhNre/5cBSzrebzc5/mzxH+AhTG0z/MlwNPAeME4TgbGASsEsVUOQpfAVgIzRLGtmAYBO/c8APYHju7ndZuBp4B5PY+5wAspBljN4IqP75SMAoYAk0WxVT4rjH0v0C2Mb+U1BDgW+DrwB2ApMVP7BXCcYkCVSewOxSB6XCSMrXCxMPbfhLGt/RwAfBdYSJySugbYTzmg54n6OPVjPTAywddXBHsT03LF+7yS5k5gd4nGe0UTY21GV6Kvp1MeG4HfA0c08D1oSuVMDHSzsWHAeaLYqU2m//c+hXuJHzCzPO0AfJVYCLgTOCavQEVKYtA5JaVLSesUg4jf6yeA3wC7ZR2gvyS2AHgl60B1OpeYkbWz3YEJotirgAdFsa2zDQG+QVwFcTkfvLyrJf0lsa3AXVkFaNAoYKIodiqT+OClLSlNxaWkaY0DbgamA2OzOGC18zIuKfPjUtIMzgb+BZzS6oGqJbE5wPJWD96kC9Gd9M7bLsBZotirgQdEsc36sy+xKnxVKwepliy2oCsp9yCD7FxQ5wDDRbGnAhtEsc2qGQpcC/y02QPUmvG4pMyeS0mz/l1NJLOG1UpiXcSFkQrKW3LyMoy46VphNXC/KLZZva4Crmv0H9VKYpuAKU0PpzUHEvdntZOJxOqrwjRcSlo5fBP4ciP/YKAT6MqSUll65cGlpFl9bgAOq/fFAyWxGeiaFbbTebGh6Lp0vINLSSuXXYDbqLNh6EBJbAOxqqUwHjhEFDtrnyajC/uaMI0Sd+20jnUM8Kt6XljP9ViqHmPQPrMxl5JmjfsacMlAL6oniU0n2tUqtEMSG4RutfVd4vtnVla/Aw6u9YJ6ktgadOdUPkH03iqzE9E1iHMpaWU3Cri+1gvqvb1HtUo5iPK3rXYpadaac4GPVPtkvUlM2f2g7CWlKom5lLR28p1qn6i3Jcxq4CE0nVcnEHsCrhLEbtXR6FZY70N3LtPqdyPwcE7HHkS0fB8LjOn5s/L5aMrRcOEy4AfAG5WfaKSv1Z1oktgOxO06twpit0pZSt4ujG31W4C27B9CNOo8Hji953ECup531exIXM1/dSsHGUvciqTYdKCsv5BPonm/3uX9/QOz0iX6Wtp9o5BUX18jdgE+D/wDzXtS7fEWMKJysI1MI98EHm3g9VlStrBp1qHAR0WxpxM7OZs14z1i4nAicc9vUTZa3p3YfOQDGq2FVauUI4AzRbGbpezE4VVJy8pMopHnJOLcuNq3Kv+i0SR2NzGtUyjbKqXqfNga4vowsyxNA04iNvpQOoTocrNNo0nsdWBeZsNpzAXEScgy2I/4hiu4lLS8LCF+rtU7Zp3a94NmllZVJeUYKgZfYJPJcEuqBrmUtDytBr4AvCgcQ8tJTHlDeFl6jLmUtHb2DnHd1iZR/NP6ftBMEnuZ2M1XoQy3II2j4k1O6H4ikZnl7XHgx6LYBwP79H7Q7JW6qpJyf+Djotj1Up67cylpKf0MeE4Ue1tJ2WwSc4+x6lSl5Fp0DSytM20B/iiK3XISWwI8k81YGlbknZBGAWeIYruUNIW/oLns6uTeJ63c+KkqKY8EjhDFHsh5xNZsCi4lTeFlYI4g7r69T8qYxKC4JaWqlFyHS0nT+bMg5u705K9WktgiYGkmw2lcEZPYcKJ5m8L9xP1uZgqKC+AHA7v1PmmFajZ2ArqWz9WcSdz9r+BS0pS26/GVyFhoPYmpVimVm29U41LSOtUKYqUytUyS2Hzg1dbH0pQilZQ7ENeHKTyIboNjM4DNRKuu1DJJYlvRzcZOJU7uFcFp6MbiUtKKQFFSZpLEQHdebCi62U8lVSm5Hpgiim3WV6mT2BxgeQbHaUYRSsrB6M7PuZS0othRELMbskliW4hmiQpn0U/P7cSUG/y6lLSi2EsQ803IbqsmVUk5HDhbFLuXS0kz2FMQcwVkl8QeAVZmdKxGqXuMqeLPIPo6makNo+fC08QynYltQjcrOJ+4xEHhWCr6fSfkUtKKQjELg4yTGOhKytHELuEKnxPF3YBLSSuOfQZ+SS4yT2Iz0K2UqVYplaVkEbbPMoNYYEttAz35JssktgFdf/cLSb8xx5HAUYlj9nIpaUVymSDmtjsEskxioCsp9yEudUhJdW3YBuAeUWyzSicAhwnibtv/MuskNp24IVkhdUmpKiUfwqWkFYdiFgbwWO+TrJPYGqK3lULKmdEBxP9ACi4lrSh2BS4VxZ7V+yTrJAa6kvJQYHyiWKpSciMuJa04bgT2EMTtJraMA/JJYlOJXzaFVCWlqpR8GFglim3W11eAL4piLyB29wLySWKriV82hRRJbE/gUwni9MelpBXBIcD1wviz+n6QRxIDXUl5HPDhnGNcSH7vWy0b0d1ob9brGGJxSdWKHRIlsXuIbo8KeZ+vUpWSM4G3RbHNAC4B5hILWypbqNgiLq8k9ibwaE7HHkieJeVoYGKOx6/FpaSpjAB+DvwV2Fk8lu0uMcqzLFK1rT4FGJfTsVU3m3fjUtLSGwP8CFgGfE88ll7XVv5FnknsLjTbmw8hzlvlQVlKqlodWWfZGTgDuI5IXtcQyawIngEeqPzLoTkGfJ3YVPPkHGNUczFwc8bHHAGck/Ex6+VS0rI0lEhMY4g+9eOIRbHTgRPRtbYayHazMMg3iUGsUiqS2ERgJNl21TgLzfkAl5Lt7VJixS8vI4lE1fsYQ1xpn7phQquWA7f294m8k9hdwC9zjtGfYcB5xInIrKh6hz0CvCWKbfmbgK4fXpn8lmh+sJ28r3d6CViYc4xqslyl3BGYlOHxGuFS0jrdOuCGap9McdGm6sLXc4kZWRY+Q0zBU+smZrNmnewmauwwniKJqS61GEV213SpViW7cClpnW0x8P1aL0iRxBYTS6MKWZSUQ4DJGRynGS4lrZOtJ24yX1PrRanuAVSVlFnc53gKmnYjm3ApaZ3t28CigV7U7klsDyIJtUJZSlY9D2DW5m4j+pUNKFUSWwQsTRSrUisl5aAW/30rbhfFNVN7Ebiy3henbCmjOsHfSleLjwEfymogDdiE7v0yU9pInAere3f7lElMVVIeSOzU3QxVKTkLWCGKbaayGbic6Nxat5RJbD7wasJ4fTVbEqqSmFclrdN0A1+iyq1FtaRMYlvRlUjNJLHxwOFZD6QOm3EpaZ1lAzFhaOo8cOo2y6pfzqOJvuCNUO1oNAv4nyi2WWqvERelT232AKmT2GzibnSFRpOSS0mzfD1ItACaM9ALa0mdxLagayvTSFI6mHhzU3MpaZ2gG/ghcX9zywtYil17VKuUJwF71fla1W1Gj6GbqZqlMJO4WuAnxKSmZYok1oWm1fJg6i8pVb3DXEpau3qNWH2cCDyb5YEVSawbuFcQF+pbpdwH+GTeA+mHS0lrR/8BriJW+rNsUrqNIomBrqScwMB9wSajad07G3hDENcsD4uJC1cPAn7NAJ0oWqFKYjPItv99vXZg4A6tXpU0a85KooHhGcBRwC1E5ZUrVRJbD0wTxa5VUo4hdnxJbQsuJa2c/gv8CbiAWDi7EniYhNs15r1RSC13ECf6UjsH2IlIpJUmoXlPZhM/DGZFth54mtiKcR4wl9ibUkqZxKYTGwAMTxx3BLH92pR+PudS0lJbDqwWxu8mfg/X9vlzbc+YlgEv9/y5jBirYkPsQuvdJTz145Z+xjKS+CamHstmYO9m3rzEutB8r65I8LVB+399bUt1TqyXapXyAqJ3fl+9ZWZqc3EpadY0dRKbSjRBS20McGrF37mUNCshdRJbRaxkKPRdpdwJOF8whi24DbVZS9RJDHQlZd9bkCYS58RSmwe8Lohr1jaKkMSmECe3U9sfOKHnuUtJs5IqQhJbQTQCVLiIuMxE0bViKy4lzVpWhCQGupLyIuDTxIn+1OYRd/abWQuKksR6rxdL7Ujq3KAzBy4lzTJQlCT2OjEzUThUENOlpFlGipLEoLNugH6c6LNkZi1yEtNwKWmWkSIlsZeAhepBJOBS0ixDRUpioFulTOnv6HZCN2s7RUtinVBSupQ0y1DRkthi4Bn1IHLkUtIsY0VLYtDes7H5wCvqQZi1kyImsXY+L+ZS0ixjRUxiTwIvqAeRg604iZllrohJDNpzNraAAmyqYNZunMTS8SzMLAdFTWLzab9rqZzEzHJQ1CS2lehs0S4WEFtfmVnGiprEoL1KSs/CzHJS5CQ2m9issx04iZnlpMhJbAtwt3oQGXiCuLndzHJQ5CQG7XH1vmdhZjkqehJ7BHhbPYgWOYmZ5ajoSayb2NKtrBYCL6oHYdbOip7EoNyrlJ6FmeWsDElsBvCuehBNctsds5yVIYmtB6apB9GEfwJL1YMwa3dlSGJQzlVKz8LMEihLErsPWKceRIN8PswsgbIksTXAA+pBNOBJ4Hn1IMw6QVmSGJRrldKzMLNEypTEpgIb1YOok5OYWSJlSmKrgJnqQdRhEfBv9SDMOkWZkhiUo6T0LMwsobIlsXuAzepBDMBJzCyhsiWxFcAs9SBqeApYoh6EWScpWxKDYpeUnoWZJVbGJHY30YO/iJzEzBIrYxJ7DXhcPYh+LAIWqwdh1mnKmMSgmCVlEcdk1vbKmsSKeEO4S0kzgbImsZeIrqlF8RTwnHoQZp2orEkMilW+FWksZh2lzEmsSCWlS0kzMzNr3P8BRB4cy0mqGnAAAAAASUVORK5CYII=');
}

.subscriptionThumbnail-digital .subscriptionThumbnail_digitalImage,
.subscriptionThumbnail-digital .subscriptionThumbnail_digitalSpaceDesktop,
.subscriptionThumbnail-digital .subscriptionThumbnail_digitalSpaceTablet,
.subscriptionThumbnail-digital .subscriptionThumbnail_digitalSpaceMobile,
.subscriptionThumbnail-print .subscriptionThumbnail_printSpace,
.subscriptionThumbnail-special .subscriptionThumbnail_special {
  display: block;
}

.dialogReadersZone {
  width: 36em;
}
.dialogReadersZone-insertVoucher {
  width: 24em;
}

.dialogReadersZone_or {
  width: 80%;
  border-top: 1px solid var(--highlighting-color);
  margin: 1em auto;
  height: 1px;
}
.dialogReadersZone_orText {
  position: relative;
  top: -10px;
  background-color: var(--background-color);
  padding: 0 0.5em;
}

.dialogReadersZone_borderAndMarginOnTop {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid var(--gray-c);
}

.registerNewMember_gdprText {
  font-size: 90%;
}
.registerNewMember_gdprText p {
  margin: 4px 0;
  line-height: 120%;
}
.registerNewMember_gdprText b {
  color: var(--highlighting-color);
}

.dialogWelcome {
  width: 24em;
}
.dialogWelcome .tImage {
  margin: 0 0 1em;
  height: 2.8em;
}
.dialogWelcome .tImage img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.dialogMemberAccount_productType {
  line-height: 1.3;
  display: inline-block;
  font-size: 66%;
  background-color: #bbb;
  color: #fff;
  padding: 1px 4px;
  border-radius: 3px;
  vertical-align: top;
  margin-top: 2px;
}
.dialogReadersZone_phonePrefix {
  display:inline-block;
  width: 4.5em;
  padding: 0.5em;
  background-position-y: 0.3em;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0 none;
}
.dialogReadersZone_phoneNumber {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: calc(100% - 4.5em);
}

.dialogReadersZone-changePassword .mErrorStatus {
  display: block !important;
  height: 1.3em;
}

.minimal-scrollbars {
  pointer-events: all;
  scrollbar-width: auto;
  scrollbar-height: auto;
  scrollbar-color: #aaa transparent;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.minimal-scrollbars::-webkit-scrollbar-track {
  background-color: transparent;
}

.minimal-scrollbars::-webkit-scrollbar {
  width: 0.6em;
  height: 0.6em;
}
@media(hover:hover){
  .minimal-scrollbars {
    scrollbar-color: transparent transparent;
  }
  .minimal-scrollbars:hover {
    scrollbar-color: #aaa transparent;
  }
  .minimal-scrollbars::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  .minimal-scrollbars:hover::-webkit-scrollbar-thumb {
    background-color: #aaa;
  }
}

#desktop {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 16px; /* base size, many inner values are counted from this */
  font-family: Roboto, Helvetica, Arial, sans;
/*  user-select: none; */
}

.tReader_screen {
  display: block;
  overflow-x: hidden;
  overflow-y: scroll;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  background-color: var(--background-color);
  color: var(--text-color);
}
.tReader_screen-pdfPage {
  overflow-y: hidden;
}
a {
  color: var(--highlighting-color);
  text-decoration: none;
}
a.item {
  color: inherit;
}
.tReader_overlayContainers {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.tReader_overlayContainers .container_articlesWrapper {
  height: 100%;
}

/* debug touches */
.debugTouchesLayer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.debugTouchesLayer-hidden {
  display: none;
}
.debugTouch {
  position: absolute;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.debugTouch-start {
  opacity: 0.5;
}
.debugTouch-cur {
  width: 40px;
  height: 40px;
}
.debugTouch-p0 {
  background-color: #f808;
  border: 1px solid #f80;
}
.debugTouch-p1 {
  background-color: #08f8;
  border: 1px solid #08f;
}
.debugTouch-c {
  width: 16px;
  height: 16px;
  background-color: #f00;
}


.navigationBar,
.languageBar,
.applicationsBar {
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
}
.applicationsBar-icons {
}
.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: inherit;
  cursor: pointer;
  text-decoration: none;
}

.logoBar {
  box-sizing: border-box;
  height: 100%;
  cursor: pointer;
}
a.logoBar {
  color: inherit;
  text-decoration: none;
}
.logoBar_title {
  font-size: 28px;
  font-weight: bold;
  margin: 2px 0;
}
.logoBar .tImage {
  width: 100%;
  height: 100%;
}
.logoBar .tImage img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
}


/* floating loader */
.floatingLoader {
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  bottom: 32px;
  right: 8px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.5s;
  cursor: pointer;
}
.floatingLoader-hidden {
  opacity: 0;
  transform: translate(0, 16px);
  pointer-events: none;
}
/*.floatingLoader:after {
  position: absolute;
  bottom: 0.1em;
  right: 0;
  left: 0;
  margin: 0 auto;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f0d7";
  color: var(--lines-color);
}*/
.trioboViewArticle .floatingLoader {
  bottom: 8px;
}

.floatingLoader_inner {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  height: 48px;
  width: 48px;
  margin: -24px 0 0 -24px;
  background-color: var(--background-color);
  border-radius: 100%;
}
.floatingLoader_number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-color);
}
.floatingLoader_bar {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--text-color);
  -webkit-border-radius: 100%;
  clip: rect(0px, 64px, 64px, 32px);
}
.floatingLoader_progress {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-border-radius: 100%;
  clip: rect(0px, 32px, 64px, 0px);
  background-color: var(--highlighting-color);
}
.floatingLoader_bar-left .floatingLoader_progress{
  z-index:1;
}
.floatingLoader_bar-right {
  transform: rotate(180deg);
  z-index:3;
}
.floatingLoader_bar-right .floatingLoader_progress{
}

/* List items */
.tReader_loaderLogo {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 100px;
  margin: auto;
  text-align: center;
  font-size: 200%;
}
.tReader_loaderLogo .tImage {
  height: 100%;
}
.tReader_loaderLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tReader_loaderDetail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  width: 200px;
  height: 48px;
  margin: auto;
  text-align: center;
}
.tReader_loaderProgressWrapper {
  width: 100%;
  height: 6px;
  border: 1px solid var(--gray-c);
  background-color: var(--gray-f);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.tReader_loaderProgressBar {
  width: 0px;
  height: 100%;
  background-color: var(--gray-c);
  border-radius: 3px;
}

.tImage {
  position: relative;
  overflow: hidden;
  /* font-size: 0; */
}
.tImage_loader {
  font-size: 20px;
  color: var(--lines-color);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  text-align: center;
}
.tImage_image {
  position: absolute;
  top: 0;
  left: 0;
}
.tReader_noContent {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 32px;
  margin: auto;
  text-align: center;
}
.tReader_noContent i {
  font-size: 36px;
  opacity: 0.8;
}
.tImage-logo img {
  position: relative;
  width: 100%;
  height: 100%;
}
.frame_pdf .tImage_image {
  width: 100%;
}

.tReader_listOfItems {
  box-sizing: border-box;
	font-size: 87.5%; /* 14px */
  line-height: var(--def-line-height);

  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 4px; */
}

.group_title {
  font-weight: 300;
  font-size: 200%;
}
.group_items {
  margin-top: 16px;
}
.group_description {
  margin: 4px 0 8px;
  font-size: 80%;
}

.item {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: bottom;
  cursor: pointer;
  color: inherit;
  padding: 4px;
  overflow: hidden;
  width: 100%;
  position: relative;
  border: 1px solid transparent;
  margin: 2px;
  transition: 0.3s transform, 0.3s opacity;
}
.tReader_listOfItems-list .item:not(.item-fullWidth) {
  display: block;
  width: 100% !important;
}
.tReader_listOfItems-list .item:not(.item-fullWidth):hover {
  background-color: var(--lines-color);
}
.tReader_listOfItems-list .item .folderThumbnail {
  float: left;
  width: 36px;
  height: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 8px;
}
.tReader_listOfItems-list .item {
  padding: 2px 4px;
}
.tReader_listOfItems-list .item .folderThumbnail::after {
  height: 4px;
  top: -4px;
}
.tReader_listOfItems-list .item .folderThumbnail>* {
  display: none;
}
.tReader_listOfItems-list .item .thumbnail_wrapper {
  float: left;
  width: 36px;
  height: 36px;
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: 8px;
}
.tReader_listOfItems-list .item .thumbnail_wrapper .tImage {
  padding-bottom: 0 !important;
  width: 100%;
  height: 100%;
}
.tReader_listOfItems-list .item .thumbnail_wrapper .tImage img {
  height: 100%;
  object-fit: cover;
}
.tReader_listOfItems-list .item .item_title {
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.tReader_listOfItems-list .item .item_status {
  display: none;
}
.tReader_listOfItems-list .item-noDate .item_title {
  margin-top: 0.75em;
}
.tReader_listOfItems-list .item-noDate .item_date {
  display: none;
}

.item-isFeatured {
  border: 1px solid var(--featured-border-color, var(--highlighting-color, currentcolor));
  background-color: var(--underdrawing-color, inherit);
  border-radius: var(--area-border-radius, 0.375em);
}

.item-justAdded {
  transform: scale(0.95);
  opacity: 0;
}
.item .thumbnail_wrapper {
  transition: 0.5s transform;
}
.item:hover .thumbnail_wrapper {
  transform: scale(1.02);
}
.item:hover .pubItem_title {
  transform: scale(1.02);
}
.item-article  {
  padding: 0;
  vertical-align: top;
}
.item-selected {
  background-color: var(--highlighting-color);
}
.item-fullWidth {
  width: 100% !important;
  display: block;
  cursor: default;
}
.itemTitle {
  padding: 32px 0 16px;
  font-weight: 300;
  font-size: 200%;
  cursor: default;
}
.item_loader {
  text-align: center;
  padding: 4em;
}
.item_loader:after {
  position: absolute;
  width: 1em;
  height: 1em;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "\f1ce";
  color: var(--gray-8);
  font: normal normal normal 200%/1 FontAwesome;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.item-textAlignRight {
  text-align: right;
}

.tReader_listOfItems-publications .itemTitle {
  padding: 32px 24px 16px;
}

.tReader_listOfItems-latestIssues .itemTitle {
  display: inline-block;
  vertical-align: bottom;
}
.mRadioRow-inlineComponentTitle {
  display: inline-flex;
  vertical-align: bottom;
}
.component_title .mRadioRow-inlineComponentTitle {
  margin: 0 0 -0.4em 1em;
}
.mRadioRow-inlineComponentTitle .mRadioRow_item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mRadioRow-inlineComponentTitle .mRadioRow_item:first-child {
  border-top-left-radius: var(--button-border-radius, 0.375em);
  border-bottom-left-radius: var(--button-border-radius, 0.375em);
}
.mRadioRow-inlineComponentTitle .mRadioRow_item: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;
}

.mRadioRow-showSearchResultTypes {
  margin: 32px 0 18px;
  display: inline-flex;
  vertical-align: bottom;
}

.item-publication {
  text-align: left;
  background-color: var(--header-background);
  color: var(--text-color);
  vertical-align: top;
  padding-top: 25px;
  padding-right: 25px;
  padding-bottom: 24px;
  padding-left: 24px;
  border: 1px solid var(--lines-color);
  margin: -1px -1px 0 0;
}
.item-publication:hover .thumbnail_wrapper {
  transform: none;
}
.item-publication:after {
  content: " ";
  position: absolute;
  bottom: -6px;
  height: 4px;
  background-color: var(--header-icons, currentcolor);
  margin: 0 auto;
  width: calc(100% - 48px);
  left: 0;
  right: 0;
  transition: 0.3s transform;
}
.item-publication:hover:after {
  transform: translateY(-16px);
}

.tReader_listOfItems-columns2 .item {
  width: calc(50% - 4px);
}
.tReader_listOfItems-columns3 .item {
  width: calc(33.33333333% - 4px);
}
.tReader_listOfItems-columns4 .item {
  width: calc(25% - 4px);
}
.tReader_listOfItems-columns5 .item {
  width: calc(20% - 4px);
}
.tReader_listOfItems-columns6 .item {
  width: calc(16.66666666% - 4px);
}
.tReader_listOfItems-columns7 .item {
  width: calc(14.28571428% - 4px);
}
.tReader_listOfItems-columns8 .item {
  width: calc(12.5% - 4px);
}
.tReader_listOfItems-columns9 .item {
  width: calc(11.11111111% - 4px);
}
.tReader_listOfItems-columns10 .item {
  width: calc(10% - 4px);
}
.tReader_listOfItems-columns11 .item {
  width: calc(9.09090909% - 4px);
}
.tReader_listOfItems-columns12 .item {
  width: calc(8.33333333% - 4px);
}
.tReader_listOfItems-columns13 .item {
  width: calc(7.69230769% - 4px);
}
.tReader_listOfItems-columns14 .item {
  width: calc(7.14285714% - 4px);
}
.tReader_listOfItems-columns15 .item {
  width: calc(6.66666666% - 4px);
}
.tReader_listOfItems-columns16 .item {
  width: calc(6.25% - 4px);
}
.tReader_listOfItems-columns17 .item {
  width: calc(5.88235294% - 4px);
}
.tReader_listOfItems-columns18 .item {
  width: calc(5.555555555% - 4px);
}
.tReader_listOfItems-columns19 .item {
  width: calc(5.26315789% - 4px);
}
.tReader_listOfItems-columns20 .item {
  width: calc(5% - 4px);
}
.tReader_listOfItems-columnsMax .item {
  width: calc(5% - 4px);
}

.tReader_listOfItems-columns2 .item-double {
  width: calc(100% - 4px);
}
.tReader_listOfItems-columns3 .item-double {
  width: calc(66% - 4px);
}
.tReader_listOfItems-columns4 .item-double {
  width: calc(50% - 4px);
}
.tReader_listOfItems-columns5 .item-double {
  width: calc(40% - 4px);
}
.tReader_listOfItems-columns6 .item-double {
  width: calc(33.3333% - 4px);
}
.tReader_listOfItems-columns7 .item-double {
  width: calc(28.5714% - 4px);
}
.tReader_listOfItems-columns8 .item-double {
  width: calc(25% - 4px);
}
.tReader_listOfItems-columns9 .item-double {
  width: calc(22.222% - 4px);
}
.tReader_listOfItems-columns10 .item-double {
  width: calc(20% - 4px);
}
.tReader_listOfItems-columns11 .item-double {
  width: calc(18.1818% - 4px);
}
.tReader_listOfItems-columns12 .item-double {
  width: calc(16.6666% - 4px);
}
.tReader_listOfItems-columns13 .item-double {
  width: calc(15.3846% - 4px);
}
.tReader_listOfItems-columns14 .item-double {
  width: calc(14.2857% - 4px);
}
.tReader_listOfItems-columns15 .item-double {
  width: calc(13.3333% - 4px);
}
.tReader_listOfItems-columns16 .item-double {
  width: calc(12.5% - 4px);
}
.tReader_listOfItems-columns17 .item-double {
  width: calc(11.7647% - 4px);
}
.tReader_listOfItems-columns18 .item-double {
  width: calc(11.1111% - 4px);
}
.tReader_listOfItems-columns19 .item-double {
  width: calc(10.5263% - 4px);
}
.tReader_listOfItems-columns20 .item-double {
  width: calc(10% - 4px);
}
.tReader_listOfItems-columnsMax .item-double {
  width: calc(10% - 4px);
}

.tReader_listOfItems-columns2 .item-publication {
  width: calc(50% + 1px);
}
.tReader_listOfItems-columns3 .item-publication {
  width: calc(33.33333333% + 1px);
}
.tReader_listOfItems-columns4 .item-publication {
  width: calc(25% + 1px);
}
.tReader_listOfItems-columns5 .item-publication {
  width: calc(20% + 1px);
}
.tReader_listOfItems-columns6 .item-publication {
  width: calc(16.66666666% + 1px);
}
.tReader_listOfItems-columns7 .item-publication {
  width: calc(14.28571428% + 1px);
}
.tReader_listOfItems-columns8 .item-publication {
  width: calc(12.5% + 1px);
}
.tReader_listOfItems-columns9 .item-publication {
  width: calc(11.11111111% + 1px);
}
.tReader_listOfItems-columns10 .item-publication {
  width: calc(10% + 1px);
}
.tReader_listOfItems-columns11 .item-publication {
  width: calc(9.09090909% + 1px);
}
.tReader_listOfItems-columns12 .item-publication {
  width: calc(8.33333333% + 1px);
}
.tReader_listOfItems-columns13 .item-publication {
  width: calc(7.69230769% + 1px);
}
.tReader_listOfItems-columns14 .item-publication {
  width: calc(7.14285714% + 1px);
}
.tReader_listOfItems-columns15 .item-publication {
  width: calc(6.66666666% + 1px);
}
.tReader_listOfItems-columns16 .item-publication {
  width: calc(6.25% + 1px);
}
.tReader_listOfItems-columns17 .item-publication {
  width: calc(5.88235294% + 1px);
}
.tReader_listOfItems-columns18 .item-publication {
  width: calc(5.555555555% + 1px);
}
.tReader_listOfItems-columns19 .item-publication {
  width: calc(5.26315789% + 1px);
}
.tReader_listOfItems-columns20 .item-publication {
  width: calc(5% + 1px);
}
.tReader_listOfItems-columnsMax .item-publication {
  width: calc(5% + 1px);
}

.kioskHeader {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 1;

  background-color: var(--header-background);
  color: var(--header-icons);
  padding: 28px 12px 0;
}
.kioskHeader_icons {
  color: var(--header-icons);
  float: right;
}
.kioskHeader_logoWrapper {
  height: 40px;
}
.kioskHeader_logoWrapper .tImage {
  height: 100%;
}
.kioskHeader_logoWrapper .tImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.kioskWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  overflow-y: scroll;
}

.pubItem_column {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  position: relative;
}
.pubItem_column-left {
  width: 60%;
  padding-right: 8px;
}
.pubItem_column-right {
  width: 40%;
}
.pubItem_logo .tImage {
  height: 60px;
}
.pubItem_logo .tImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.pubItem_title {
  height: 60px;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 120%;
  line-height: 120%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.5s transform;
}
.pubItem_issueCoversWrapper {
  position: relative;
  height: 0;
}
.pubItem_issueCovers {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  line-height: 1;
  font-size: 0px;
}
.pubItem_issueCovers:before {
  content: " ";
  width: 1px;
  margin-left: -1px;
  height: 100%;
  vertical-align: bottom;
  display: inline-block;
}
.pubItem_description {
  margin: 8px 0;
  overflow: hidden;
  height: 46px;
  font-weight: 300;
  font-size: 90%;
  line-height: 120%;
  color: var(--text-color);
}
.pubItem_publisher {
  margin: 16px 0 0;
}
.pubItem_publisherLink {
  text-decoration: underline;
}
.pubItem_buttons {
  padding: 0;
  box-sizing: border-box;
}
.pubItem_button,
a.pubItem_button {
  color: var(--header-background);
  background-color: var(--header-icons);
  border: 1px solid var(--header-icons);
  width: 100%;
  margin: 0 0 4px;
  padding: 0.5em;
  display: block;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}
.pubItem_button:hover {
  background-color: var(--header-background);
  color: var(--header-icons);
  border-color: var(--header-icons);
}
.thumbnail_wrapper {
  border: 1px solid var(--lines-color, #ddd);
  box-sizing: border-box;
  cursor: pointer;
  font-size: 0px;
}
a.thumbnail_wrapper {
  display: block;
}
.item-double .thumbnail_wrapper {
  display: inline-block;
  vertical-align: bottom;
  width: calc(50% - 3px);
}
.thumbnail {
  box-sizing: border-box;
}
.thumbnail_wrapper img {
  width: 100%;
}
.thumbnail_wrapper-pubCover {
  font-size: 0;
  width: 50%;
}
.thumbnail_wrapper-pubList {
  font-size: 0;
  width: calc(20% - 4px);
  display: inline-block;
  margin: 0 2px;
  vertical-align: bottom;
}

.item-subscription {
  display: block;
  background-color: var(--opposite-color);
  border-radius: var(--area-border-radius);
  margin: 16px auto;
  width: 1000px;
  max-width: calc(100% - 16px);
  padding: 32px;
  cursor: default;
}
.subscriptionItem_title {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 32px;
}
.subscriptionItem_thumbnail {
  float: right;
  width: 40%;
  max-width: 320px;
}
.subscriptionItem_description {
  font-weight: 300;
  line-height: 120%;
  font-size: 100%;
}
.subscriptionItem_buttons {
  margin: 3em 0 1em;
  display: flex;
}
.subscriptionItem_button {
  flex: 0 1 50%;
  max-width: 200px;
  border-radius: 0;
  margin: 0 1px 0 0;
}
.subscriptionItem_buttons .subscriptionItem_button:first-child {
  border-top-left-radius: var(--button-border-radius, 0.375em);
  border-bottom-left-radius: var(--button-border-radius, 0.375em);
}
.subscriptionItem_buttons .subscriptionItem_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;
}
.subscriptionItem_VATinfo {
  font-weight: 300;
  line-height: 120%;
  font-size: 87.5%;
}

.subscriptionOfferBox {
  border-radius: var(--area-border-radius, 0.375em);
  overflow: hidden;
  background-color: var(--opposite-color);
  width: 100%;
  font-size: 87.5%;
  line-height: var(--def-line-height);
}
.subscriptionOfferBox .item-subscription {
  margin: 0;
  padding: 32px 16px;
  background-color: transparent;
  width: 100%;
  max-width: 100%;
}
.subscriptionOfferBox .subscriptionItem_title {
  font-size: 130%;
  line-height: var(--def-line-height);
  font-weight: 400;
  margin-bottom: 4px;
}
.subscriptionOfferBox .subscriptionItem_description {
  line-height: var(--def-line-height);
}
.subscriptionOfferBox>.subscriptionItem_buttons {
  max-width: 100%;
  margin: 0;
}
.subscriptionOfferBox>.subscriptionItem_buttons .subscriptionItem_button {
  background-color: #000;
  border-color: #000;
  color: #fff;
  flex: 0 1 100%;
  max-width: 100%;
}
.subscriptionOfferBox>.subscriptionItem_buttons .subscriptionItem_button:hover {
  background-color: #fff;
  color: #000;
}
.subscriptionOfferBox>.subscriptionItem_buttons .subscriptionItem_button:first-child {
  border-top-left-radius: 0;
}
.subscriptionOfferBox>.subscriptionItem_buttons .subscriptionItem_button:last-child {
  border-top-right-radius: 0;
}



.item_articles {
  border: 1px solid var(--lines-color);
  transition: 0.5s transform;
}
.item_articles:hover {
  transform: scale(1.02);
}
.item_articles-singlePageInTwoUpContainer {
  width: calc((100% - 2px) / 2);
}

.articleThumbnail_wrapper {
  box-sizing: border-box;
  cursor: pointer;
}
.item_articles-centerfold .articleThumbnail_wrapper {
  display: inline-block;
  vertical-align: bottom;
  width: 50%;
}
.item_listOfLinkedArticles {
  font-size: 90%;
  margin: 0.25em 0 1em;
  list-style: none;
  padding: 0;
}
.item_listOfLinkedArticles li {
  color: var(--text-color);
  line-height: 120%;
  padding: 0.2em 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.item_listOfLinkedArticles a {
  color: var(--text-color);
}
.item_listOfLinkedArticles a:hover {
  cursor: pointer;
  border-bottom: 1px dotted;
  color: var(--highlighting-color);
}


.articleThumbnail_wrapper img {
  width: 100%;
}
.articleThumbnail-locked:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../mask.png);
  background-repeat: repeat;
  background-size: 8px 8px;
  opacity: 0.5;
}
.articleThumbnail_wrapper-empty {
  display: inline-block;
  vertical-align: bottom;
  width: 50%;
}

/* .component_wrapper-listOfArticles .easyReadingArticles {
  display: inline-block;
  box-sizing: border-box;
  padding-right: 8px;
  width: 320px;
  vertical-align: top;
}
.component_wrapper-listOfArticles .tReader_listOfItems-articles {
  display: inline-block;
  box-sizing: border-box;
  padding-left: 8px;
  width: calc(100% - 320px);
  vertical-align: top;
}
@media (max-width: 699px) {
  .component_wrapper-listOfArticles .easyReadingArticles,
  .component_wrapper-listOfArticles .tReader_listOfItems-articles {
    display: block;
    padding: 0;
    width: 100%;
  }
} */


a.articleTitle_wrapper {
  display: inline-block;
  color: var(--text-color);
  margin: 1em 0;
}
a.articleTitle_wrapper .articleTitle_title {
  border-bottom: 1px dotted transparent;
}
a.articleTitle_wrapper:hover .articleTitle_title {
  color: var(--highlighting-color);
  border-bottom-color: var(--highlighting-color);
}
a.articleTitle_wrapper-big .articleTitle_title {
  font-weight: 300;
  font-size: 175%;
}
.articleTitle_wrapper .thumbnail {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  width: 100px;
  height: 75px;
  border: 1px solid var(--lines-color);
}
.articleTitle_wrapper .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail_wrapper-publication {
  border: 0px none;
  position: relative;
  margin-bottom: 4px;
  height: 0px;
}
.thumbnail-issueStacked {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  margin: 0;
}
.thumbnail-issueStacked-0 {
  left: -4px;
}
.thumbnail-issueStacked-1 {
  bottom: 4px;
}
.thumbnail-issueStacked-2 {
  left: 4px;
  bottom: 8px;
}

.item-folder {
  padding-top: 12px;
}
.folderThumbnail {
  margin: 2px 0px;
  box-sizing: border-box;
  border: 1px solid var(--lines-color);
  background-color: var(--gray-c);
  cursor: pointer;
  font-size: 0px;
  position: relative;
  line-height: 0;
  border-radius: 4px;
  border-top-left-radius: 0px;
  padding: 12px 8px;
}
.folderThumbnail:after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: -12px;
  left: -1px;
  width: 35%;
  height: 12px;
  border: 1px solid var(--lines-color);
  background-color: var(--after-bg, var(--gray-c));
  border-bottom: 0 none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.folderThumbnail-9 .folderThumbnail-0 {
  height: 30px;
}
.folderThumbnail_issueWrapper {
  display: inline-block;
  vertical-align: bottom;
  margin: 0;
  padding: 1px;
}
.folderThumbnail-4 .folderThumbnail_issueWrapper {
  width: calc(50% - 2px);
}
.folderThumbnail-9 .folderThumbnail_issueWrapper {
  width: calc(33.33% - 2px);
}
.folderThumbnail_issueWrapper img {
  object-fit: cover;
  height: 100%;
}
.folderThumbnail-0 {
  height: 140px;
}
.tShopCart_thumbnailWrapper .folderThumbnail .folderThumbnail_issueWrapper,
.eshopItem_thumbnail .folderThumbnail .folderThumbnail_issueWrapper {
  width: 20%;
}

.thumbnail-fixed {
  width: 100%;
  height: 100%;
}

.folderThumbnail-fixRatios {
  height: 140px;
}
.folderThumbnail-fixRatios.folderThumbnail-4 .folderThumbnail_issueWrapper {
  height: calc(50% - 2px);
}
.folderThumbnail-fixRatios.folderThumbnail-9 .folderThumbnail_issueWrapper {
  height: calc(33.33% - 2px);
}
.folderThumbnail-fixRatios .folderThumbnail_issueWrapper {
  overflow: hidden;
}
.folderThumbnail-fixRatios .folderThumbnail_issueWrapper img {
  width: 100%;
  height: 100%;
}

.tReader_groupWrapper {
  margin: 2px 0px;
  box-sizing: border-box;
  border: 4px solid var(--lines-color);
  background-color: var(--lines-color);
  cursor: pointer;
  font-size: 0px;
  position: relative;
  line-height: 0;
}
.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-empty {
  border: 0px none;
}
.thumbnail_wrapper-issueInGroup img {
  object-fit: cover;
  height: 100%;
}
.tReader_thumbnailWrapper-articlePreview {
  margin: 8px auto;
  position: relative;
}
.tReader_thumbnailWrapper-articlePreview:after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(255,255,255,1) 100%);
}
.container-isZoomable .tReader_thumbnailWrapper-articlePreview:after {
  display: none;
}
.item_title {
  margin-top: 4px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.item_status {
  margin-top: 4px;
  float: right;
  color: var(--highlighting-color, inherit);
  overflow: hidden;
}
.item_progress {
  font-size: 50%;
}
.item_date, .item_subtitle {
  font-weight: 300;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.issueButtonsBar {

}
.issueButtonsBar_button,
a.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: 100%;
  border-radius: var(--button-border-radius, 0.375em);
  margin: 8px 0;
  padding: 0.5em 1.5em;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}
.issueButtonsBar_button:hover {
  background-color: var(--opposite-color, inherit);
  color: var(--highlighting-color, inherit);
  border-color: var(--highlighting-color, currentColor);
}
.issueButtonsBar-featured .issueButtonsBar_button {
  margin: 5px 0 0;
  width: 100%;
  font-size: 100%;
}

.issueDownloadingStatus_offline {
  width: 100%;
  text-align: center;
}
.issueDownloadingStatus_download {
  transition: all 0.5s;
}
.issueDownloadingStatus_download-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(0, -8px);
}
.issueDownloadingStatus_downloadProgress {
  width: 66%;
  height: 2px;
  background-color: var(--opposite-color);
  margin: 0 auto 4px;
}
.issueDownloadingStatus_downloadProgress div {
  height: 2px;
  background-color: var(--highlighting-color);
  transition: all 0.5s;
}
.issueDownloadingStatus_downloadStatus {
  font-size: 80%;
}


.groupHeaderBar {
}

.groupHeaderBar_title {
  font-weight: 300;
  font-size: 200%;
  cursor: pointer;
}
.groupHeaderBar_button {
  background-color: var(--highlighting-color, inherit);
  border: 1px solid var(--highlighting-color, currentColor);
  color: var(--opposite-color, currentColor);
  border-radius: var(--button-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: 400;
  font-size: 24px;
  cursor: pointer;
}
.eshopCategoryHeaderBar_description {
  margin: 4px 0 8px;
  font-size: 15px;
  font-weight: 300;
}


.tReader_featuredIssueInfo {
  display: inline-block;
  width: calc(50% + 3px);
  vertical-align: bottom;
  padding: 0 0 0 8px;
  box-sizing: border-box;
}
.tReader_featuredIssueTitle {
  font-weight: bold;
  font-size: 120%;
  line-height: var(--def-line-height);
  margin-bottom: 8px;
}
.tReader_featuredIssueDescription {
  font-weight: 300;
  font-size: 90%;
  line-height: var(--def-line-height);
}
.tReader_featuredIssueInfo .issueButtonsBar {
  margin-top: 4px;
}
.tReader_featuredIssueInfo .issueButtonsBar_button-downloadPDF {
  display: none;
}

.applicationBox_content {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.applicationBox_title {
  font-weight: 300;
  font-size: 90%;
  line-height: 120%;
}
.layoutSize0 .applicationBox_title {
  display: none;
}
.applicationBox_content .tImage {
  width: 60%;
  padding-bottom: 60%;
  border-radius: 8px;
  margin: 6px auto 6px;
}
.applicationBox_content .tImage img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.applicationBox_name {
  font-weight: bold;
  font-size: 100%;
  line-height: 120%;
  margin-bottom: 8px;
}
.applicationBox_links {
  margin-bottom: 5px;
}
.applicationButton {
  color: var(--text-color);
  background-color: var(--highlight-color);
  border: 1px solid var(--lines-color);
  display: inline-block;
  margin: 0px 2px;
  padding: 4px 20px;
}
.layoutSize0 .applicationButton {
  padding: 4px 10px;
}
.applicationButton i {
  font-size: 150%;
}

/* search bar */

.tReader_searchbar {
  z-index: 2;
  position: fixed;
  box-sizing: border-box;
  padding: 0.5em;
  left: 0;
  right: 0;
  bottom: 0em;
  width: 100%;
  max-width: 40em;
  margin: 0 auto;
  background-color: var(--controlbar-bg-color);
  color: var(--gray-4);
  border: 1px solid var(--lines-color);
  transform: translate(0, 7.5em);
  transition: all 0.5s;
}
.trioboSearchbarShown .tReader_searchbar {
  transform: none;
}
.tReader_searchbox-noScopeControl .mRadioButtons-searchScope {
  display: none;
}
.trioboSearchbarShown:not(.trioboViewArticle):not(.trioboViewSearch) .tReader_screen:after {
  content: " ";
  background: black;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.5;
}
.searchbar_navigation {
  margin: -0.5em -0.5em 0;
}
.searchbar_buttonGroup-right {
  float: right;
  display: none;
}
.trioboViewArticle .searchbar_buttonGroup-right {
  display: block;
}
.searchbar_status {
  position: absolute;
  bottom: 100%;
  border: 1px solid var(--lines-color);
  transition: all 0.5s;
  overflow: hidden;
  background-color: rgba(255,255,0,0.66);
  text-align: center;
  box-sizing: border-box;
  width: calc(100% + 2px);
  left: -1px;
  padding: 4px 8px;
}
.searchbar_status-hidden {
  height: 0;
  opacity: 0;
}
.mInput-search {
  border-color: var(--highlighting-color);
  width: calc(100% - 2.25em);
  padding: 0.25em;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 2.25em;
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
.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: 2.25em;
  padding: 0.5em 0 0.625em;
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 2.25em;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  text-align: center;
}
.mButton-search:hover {
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
}
.mButton-searchRunning .fa-search,
.mButton-searchReady .fa-circle-o-notch {
  display: none;
}
.mButton-searchNav {
  border-radius: 0;
  padding: 8px 12px;
  color: var(--gray-4);
  background-color: transparent;
  border: 0 none;
}
.mButton-searchNav:hover {
  color: var(--highlighting-color);
  background-color: transparent;
}

/* control bar */

.tReader_controlbar {
  z-index: 2;
  position: fixed;
  box-sizing: border-box;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 0em;
  width: 100%;
  border-top: 0.25em solid var(--highlighting-color, inherit);
  transform: translate(0, calc(-100% - 0.5em));
  transition: all 0.5s;
  white-space: nowrap;
}
.trioboControlButtonsShown .tReader_controlbar {
  transform: translate(0, calc(-100% + 1.75em));
}
.trioboControlButtonsShown:not(.trioboControlbarShown) .tReader_controlbar:hover {
  transform: translate(0, calc(-100% + 2em));
}
.trioboControlbarShown .tReader_controlbar {
  transform: none;
}
.controlbar_wrapper {
  background-color: var(--controlbar-bg-color);
  backdrop-filter: blur(0.625em);
  border-bottom: 1px solid var(--lines-color);
  white-space: nowrap;
}
.controlbar_top {
  padding: 0.5em;
  background-color: var(--gray-f);
}
.controlbar_rightGroup {
  float: right;
}
.controlbar_logo {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  height: 2.5em;
  padding: 0 0.5em;
  cursor: pointer;
}
.trioboControlBarVisibleGroups0 .controlbar_logo {
  width: calc(100% - 7.5em);
}
.trioboControlBarVisibleGroups1 .controlbar_logo {
  width: calc(100% - 14em);
}
.trioboControlBarVisibleGroups2 .controlbar_logo {
  width: calc(100% - 20.5em);
}
.trioboControlBarVisibleGroups0.trioboHasReadersZone .controlbar_logo {
  width: calc(100% - 11em);
}
.trioboControlBarVisibleGroups1.trioboHasReadersZone .controlbar_logo {
  width: calc(100% - 17.5em);
}
.trioboControlBarVisibleGroups2.trioboHasReadersZone .controlbar_logo {
  width: calc(100% - 24em);
}
.controlbar_logo p {
  padding: 0.15em 0;
  font-size: 2em;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.trioboThemeDark .tImage-logoLight {
  display: none;
}
#desktop:not(.trioboThemeDark) .tImage-logoDark {
  display: none;
}
.controlbar_logo .tImage {
  width: 100%;
  height: 100%;
}
.controlbar_logo .tImage img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
}

.controlbar_buttons {
  display: inline-block;
  margin: 0 0.25em;
  border: 1px solid var(--lines-color);
  border-radius: 0;
  overflow: hidden;
}
#desktop:not(.trioboHasReadersZone) .tReader_controlbar .controlbar_buttons-user,
#desktop:not(.trioboControlBarVisibleGroupZoom) .tReader_controlbar .controlbar_buttons-zoom,
#desktop:not(.trioboMainMenuVisibleGroupZoom) .mainMenuButtonsBar .controlbar_buttons-zoom,
#desktop:not(.trioboControlBarVisibleGroupTheme) .tReader_controlbar .controlbar_buttons-theme,
#desktop:not(.trioboMainMenuVisibleGroupTheme) .mainMenuButtonsBar .controlbar_buttons-theme {
  display: none;
}
.controlbar_button {
  background-color: var(--gray-f);
  color: var(--gray-0);
  border: 0 none;
  border-left: 1px solid var(--lines-color);
  border-radius: 0;
  margin: 0;
  padding: 0 0 0 0;
  transition: all 0.5s;
  width: 3em;
  height: calc(2.5em - 2px);
  text-align: center;
  position: relative;
}
.controlbar_button i {
  font-size: 0.875em;
}
@media (max-width: 599px) {
  .controlbar_button {
    padding: 0.5em 0.7em;
    width: 2.7em;
  }
  .trioboControlBarVisibleGroups0 .controlbar_logo {
    width: calc(100% - 6.5em);
  }
  .trioboControlBarVisibleGroups1 .controlbar_logo {
    width: calc(100% - 12.5em);
  }
  .trioboControlBarVisibleGroups2 .controlbar_logo {
    width: calc(100% - 18.5em);
  }

  .trioboControlBarVisibleGroups0.trioboHasReadersZone .controlbar_logo {
    width: calc(100% - 10em);
  }
  .trioboControlBarVisibleGroups1.trioboHasReadersZone .controlbar_logo {
    width: calc(100% - 16em);
  }
  .trioboControlBarVisibleGroups2.trioboHasReadersZone .controlbar_logo {
    width: calc(100% - 22em);
  }
}
.controlbar_button-loggedIn:after {
  position: absolute;
  bottom: 0.3em;
  right: 0.5em;
  font: normal normal normal 66%/1 FontAwesome;
  content: "\f00c";
  padding: 1px;
}

.controlbar_button:first-child {
  border-left: 0 none;
}
.controlbar_button:hover {
  background-color: var(--gray-f);
  color: var(--highlighting-color);
  border-color: var(--lines-color);
}
.controlbar_button-on {
  background-color: var(--gray-0);
  color: var(--gray-f);
}
.controlbar_button-on:hover {
  background-color: var(--gray-0);
  color: var(--highlighting-color);
}
.mainMenuButtonsBar .controlbar_buttons {
  border-color: var(--gray-f);
}
.mainMenuButtonsBar .controlbar_button {
  background-color: var(--gray-0);
  color: var(--gray-f);
  border-color: var(--gray-f);
}
.mainMenuButtonsBar .controlbar_button:hover {
  background-color: var(--gray-0);
  color: var(--gray-f);
  border-color: var(--gray-f);
}
.mainMenuButtonsBar .controlbar_button-on,
.mainMenuButtonsBar .controlbar_button-on:hover {
  background-color: var(--gray-f);
  color: var(--gray-0);
}
.controlbar_button i.fa {
  font-style: normal;
}

.controlbar_arrow {
  background-color: var(--gray-0);
  color: var(--gray-f);
  border: 1px solid var(--lines-color);
  padding: 0;
  width: 3em;
  margin: -1px auto 0;
  height: 1em;
  text-align: center;
  cursor: pointer;
  font-size: 1.5em;
}
.trioboControlbarShown .controlbar_arrow i {
  transform: rotate(180deg);
}
.trioboEasyReaderMode .controlbar_arrow {
  display: none;
}

.controlButton {
  position: fixed;
  background-color: var(--gray-f);
  color: var(--gray-0);
  border: 1px solid var(--lines-color);
  border-radius: 0;
  transition: all 0.5s;
  width: 3em;
  text-align: center;
  margin: 0;
}
.controlButton:hover {
  background-color: var(--gray-f);
  color: var(--highlighting-color);
  border: 1px solid var(--lines-color);
}
.controlButton-left {
  top: calc(50% - 1.625em);
  left: -1px;
  z-index: 2;
  transform: translate(-5.625em, 0);
}
.controlButton-right {
  top: calc(50% - 1.625em);
  right: -1px;
  z-index: 2;
  transform: translate(90px, 0);
}
.controlButton-easyReading {
  width: auto;
  bottom: 0.5em;
  left: 0.5em;
  z-index: 2;
  transform: translate(0, 5.625em);
}
.controlButton-easyReading i {
  width: 1em;
  text-align: center;
}

.controlButton-close {
  top: -1px;
  left: -1px;
  z-index: 2;
  transform: translate(0, -5.625em);
}
.controlButton-search {
  width: auto;
  bottom: 0.5em;
  right: 0.5em;
  z-index: 2;
  transform: translate(0, 5.625em);
}
.trioboControlButtonsShown:not(.trioboControlbarShown) .showControlBarButton,
.trioboControlButtonsShown:not(.trioboControlbarShown) .controlButton-close,
.trioboControlButtonsShown .controlButton-easyReading,
.trioboControlButtonsShown:not(.trioboSearchbarShown) .controlButton-search,
.trioboControlButtonsShown .controlButton-left,
.trioboControlButtonsShown .controlButton-right {
  transform: none;
}
@media (max-width: 1000px) {
  .controlButton-easyReading {
    transform: translate(-12.5em, 0);
  }
  .trioboSearchbarShown .controlButton-easyReading {
    bottom: 120px;
  }
}
.controlButton-left:hover {
  transform: translate(0.25em, 0);
}
.controlButton-right:hover {
  transform: translate(-0.25em, 0);
}
.trioboControlButtonsShown:not(.trioboControlbarShown) .controlButton-close:hover {
  transform: translate(0.25em, 0.25em);
}

.controlButton-disabled {
  opacity: 0.2;
}
.controlButton-hidden {
  display: none;
  pointer-events: none;
}

.trioboIsTouchScreen .controlButton-left,
.trioboIsTouchScreen .controlButton-right {
  display: none;
}

.mainMenuButtonsBar {
  position: absolute;
  z-index: 1;
  top: 0.125em;
  right: 0.125em;
  width: calc(100% - 3em);
  font-size: 90%;
  text-align: right;
}

/* thumbnail bar */
.thumbnailbar {
  box-sizing: border-box;
  width: calc(100% + 1em);
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.5em;
  padding: 0.5em 0 1em;

  scroll-snap-type: x mandatory;
}
.thumbnailbar-noScrollSnap {
  scroll-snap-type: none;
}
.trioboOverlayMode .thumbnailbar,
.trioboEasyReaderMode .thumbnailbar {
  display: none;
}
.thumbnailbar:before, .thumbnailbar:after {
  display: inline-block;
  content: " ";
  width: calc(50% - 4em);
}
.thumbnailbar_container {
  display: inline-block;
  margin: 0 0.25em; /* 0 4px; */
  border: 1px solid var(--lines-color);
  line-height: 0;

  scroll-snap-align: center;
}
.thumbnailbar_articleWrapper {
  display: inline-block;
  vertical-align: top;
}
.thumbnailbar_article {
  box-sizing: border-box;
  cursor: pointer;
  width: 5.625em; /* 90px; */
}
.layoutSize0 .thumbnailbar_article {
  width: 5.625em; /* 90px; */
}
.layoutSize1 .thumbnailbar_article,
.layoutSize2 .thumbnailbar_article {
  width: 6.25em; /* 100px; */
}
.thumbnailbar_container-twoUp .thumbnailbar_article {
  width: 11.25em;
}
.layoutSize1 .thumbnailbar_container-twoUp .thumbnailbar_article,
.layoutSize2 .thumbnailbar_container-twoUp .thumbnailbar_article {
  width: 12.5em;
}

.thumbnailbar_article-empty {
  width: 0px;
}


.thumbnailbar_article img {
  width: 100%;
}
.thumbnailbar_article-locked:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../mask.png);
  background-repeat: repeat;
  background-size: 4px 4px;
  opacity: 0.5;
}

/* menu */
.menuWrapper {
  white-space: nowrap;
  padding: 1px 0 0 0;
}
.menuItem,
a.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,
a.menuItem-collapsed {
  display: none;
}
.menuItem-current {
  border-bottom-color: var(--highlighting-color);
}
.menuItem_icon-numberOfItemsInCart {
  position: relative;
}
.menuItem_icon-numberOfItemsInCart::after {
  display: inline-block;
  content: attr(data-items-in-shopping-cart);
  border: 1px solid currentcolor;
  border-radius: 3px;
  font-size: 50%;
  min-width: 1.2em;
  height: 1.2em;
  margin: 0 0 0 0.2em;
  background: transparent;
  text-align: center;
}
.menuItem_submenuHrefs {
  display: none;
}

.mFloatingMenu-subMenu {
  background-color: var(--background-color);
  border: 1px solid var(--text-color);
  border-top-width: 4px;
  border-radius: 0;
}
.mFloatingMenu-subMenu .mFloatingMenu_item {
  border-bottom: 0 none;
  color: var(--text-color);
}
.mFloatingMenu-subMenu .mFloatingMenu_item-floatingMenuHeader {
  background-color: transparent;
  color: var(--text-color);
  font-weight: bold;
}
.mFloatingMenu-subMenu .mFloatingMenu_item:hover {
  background-color: rgba(128,128,128,0.25);
}
.mFloatingMenu_item .menuItem_icon {
  width: 1em;
  text-align: center;
}

/* main icons bar component */
.mainIconsBarButton {
  display: inline-block;
  vertical-align: top;
  background-color: transparent;
  color: inherit;
  border: none;
  padding: 0.5em;
  margin: 0;
  cursor: pointer;
  position: relative;
}
.mainIconsBarButton:hover {
  background-color: transparent;
  color: inherit;
}
.mainIconsBarButton-shop {
  padding-left: 0.25em;
  padding-right: 0.75em;
}
.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;
}
.trioboIconRZHidden .mainIconsBarButton-user,
.trioboIconShopHidden .mainIconsBarButton-shop,
.trioboIconSearchHidden .mainIconsBarButton-search,
.trioboIconHomeHidden .mainIconsBarButton-home,
.trioboIconMainMenuHidden .mainIconsBarButton-menu,
.trioboIconMainMenuHidden .controlbar_button-mainMenu,
.trioboIconTRLoginHidden .mainIconsBarButton-trLogin,
.trioboIconTRLogoutHidden .mainIconsBarButton-trLogout {
  display: none;
}
.trioboIconUserLoggedIn .mainIconsBarButton_label-login,
#desktop:not(.trioboIconUserLoggedIn) .mainIconsBarButton_label-user {
  display: none;
}
.trioboIconUserLoggedIn .mainIconsBarButton-user i:before {
  margin-left: -0.2em;
  margin-right: 0.2em;
}
.trioboIconUserLoggedIn .mainIconsBarButton-user i:after {
  position: absolute;
  bottom: 0em;
  right: -1.0em;
  font: normal normal normal 35%/1 FontAwesome;
  content: "\f00c";
  padding: 1px;
  border: 1px solid currentcolor;
  border-radius: 3px;
  background-color: transparent;
}
.trioboShoppingCartIsUsed .mainIconsBarButton-shop .mainIconsBarButton_icon:after {
  position: absolute;
  bottom: 0.75em;
  right: 0em;
  min-width: 1em;
  padding: 1px;
  font-size: 50%;
  font-weight: bold;
  content: attr(data-items-in-shopping-cart);
  border: 1px solid currentcolor;
  border-radius: 3px;
  background-color: transparent;
}
.eshop_cartInfo {
  margin-top: 16px;
  text-align: center;
  padding: 16px 8px;
  display: none;
}
.trioboShoppingCartIsUsed .eshop_cartInfo {
  display: block;
}

.tReader_overlays {
}

.dialogOk, .dialogError {
  width: 320px;
}
.dialogOk .mDialog_content, .dialogError .mDialog_content {
  padding-top: 24px;
  padding-bottom: 24px;
}
.dialogTrioboReader {
  width: 480px;
}

.dialog_button {
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
  margin: 16px 0 16px;
}

.dialogCustomInfo {
  width: 480px;
}
.dialogCustomInfo_content {

}

.dialogApplicationInfo {
  width: 36em;
}
.dialogApplicationInfo .tImage {
  margin: 1em 0 2em;
  height: 5em;
}
.dialogApplicationInfo .tImage img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.dialogApplicationInfo_thirdPartyTitle {
  border-top: 1px solid var(--highlighting-color);
  font-weight: 300;
  font-size: 105%;
}
.dialogApplicationInfo_publisher-title {
  font-weight: bold;
}
.dialogApplicationInfo_footer {
  font-size: 70%;
  font-weight: 300;
  margin-top: 2em;
  opacity: 0.5;
}
.dialogMemberAccount {
  width: 36em;
}
.dialog_row-alignRight {
  text-align: right;
}
.dialog_row .mCheckbox {
  text-align: left;
  padding-left: 0;
}
.dialog_row .mCheckbox p {
  width: calc(100% - 1.75em - 2px);
}

.dialog_row .mButton {
  margin-left: 0;
}

.tCookieManager_mainDialog {
  width: 36em;
}
.tCookieManager_mainDialog .tImage {
  margin: 0 0 1em;
  height: 3em;
}
.tCookieManager_mainDialog .tImage img {
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.tCookieManager_serviceIcon {
  float: right;
  margin: -0.25em 0em 0.2em 0.2em;
}
.tCookieManager_serviceIcon i {
  width: 1.6em;
  height: 1.6em;
  text-align: center;
  font-size: 300%;
  border-radius: 3px;
  padding: 0.25em 0.2em 0.15em;
  color: var(--highlighting-color);
}
.tCookieManager_service {
  border-top: 1px solid var(--lines-color);
}
.tCookieManager_moreInfo a {
  border-color: var(--highlighting-color);
}
.tCookieManager_serviceOptions {
  margin-left: 0;
  margin-top: 0;
}

.eShopInfo {
  font-size: 87.5%;
}
.eShopInfo_block {
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 0 8px;
}
.eShopInfo_publisher {
  margin: 8px 0;
  line-height: 120%;
}
.eShopInfo_publisher-title {
  font-weight: bold;
  margin-bottom: 4px;
}
.eShopInfo_storeInfo {
  font-size: 87.5%;
}
.eShopInfo_button {
  display: block;
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
  margin: 16px auto;
}
.eShopInfo_publisher a {
  color: var(--highlighting-color, inherit);
}

.tReader_listOfItems-otherEshopItems {
  max-width: calc(100% - 64px);
  margin: 0 auto;
  text-align: center;
}
.item-eshopPackage,
.item-issueTag {
  cursor: default;
}

.tReader_table {
  font-size: 90%;
  width: 100%;
  border: 1px solid var(--gray-d);
}
.tReader_table tr {
}
.tReader_table tr.hidden {
  display: none;
}
.tReader_table .tr-marginOnTop {
  border-top: 1px solid var(--highlighting-color);
}
.tReader_table tr:nth-child(odd) {
  background-color: rgba(128,128,128,0.05);
}
.tReader_table tr.discount {
  background-color: transparent;
}
.tReader_table tr.total {
  background-color: rgba(128,128,128,0.1);
}
.tReader_table tr.total td {
  font-weight: bold;
}


.tReader_table th {
  font-weight: bold;
  padding: 4px 4px;
}
.tReader_table td {
  padding: 2px 4px;
}
.tReader_table .td-validFrom {
  text-align: right;
  white-space: nowrap;
  width: 80px;
}
.tReader_table a {
  cursor: pointer;
}

.tReader_listOfItems-featuredArticles {
  font-size: 100%;
}
.item-featuredArticle {
  box-sizing: border-box;
  margin: 0 0 8px 0;
  padding: 0 24px 8px 0;
  clear: both;
  height: 7em;
  overflow: hidden;
}
.featuredArticle_thumbnailWrapper {
  float: left;
  width: 6em;
  height: 6em;
  overflow: hidden;
  margin: 0 0.5em 0 0;
  cursor: pointer;
  transition: 0.5s transform;
}

.item-featuredArticle .tImage {
  width: 100%;
  height: 100%;
}
.item-featuredArticle .tImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featuredArticle_thumbnailWrapper:hover {
  transform: scale(1.02);
}

.featuredArticle_title {
  font-size: 130%;
  line-height: var(--def-line-height);
  margin-bottom: 4px;
  max-height: 2.6em;
  overflow: hidden;
  cursor: pointer;
}
.featuredArticle_title:hover {
  text-decoration: underline;
}
.featuredArticle_description {
  font-weight: 300;
  font-size: 87.5%;
  line-height: var(--def-line-height);
}
.featuredArticle_issueTitle {
  font-size: 87.5%;
  line-height: var(--def-line-height);
  margin-top: 4px;
  text-align: right;
}


.component_title,
a.component_title {
  display: block;
  color: var(--text-color);
  text-decoration: none;
  font-size: 175%;
  font-weight: 300;
  margin-bottom: 0.5em;
}


/* issueBox */
.issueBox {
}
.issueBox_body {
  box-sizing: border-box;
}
.issueBox_cover {
  width: 50%;
  max-width: 224px;
  float: left;
  margin-right: 1em;
}
.issueBox .thumbnail_wrapper {
  transition: 0.5s transform;
}
.issueBox .thumbnail_wrapper:hover {
  transform: scale(1.02);
}

.issueBox_description {
  font-weight: 300;
  font-size: 87.5%;
  line-height: var(--def-line-height);
  white-space: pre-wrap;
}
.issueBox_date {
  font-weight: 300;
  font-size: 87.5%;
  line-height: var(--def-line-height);
  margin-top: 16px;
}
.issueBox_buttons {
  clear: both;
  display: flex;
  justify-content: center;
}
.issueBox_buttons .issueButtonsBar_button {
  flex: 0 1 40%;
  border-radius: 0;
  margin: 16px 1px 0 0;
  max-width: 164px;
  padding: 0.5em 0.5em;

  display: flex;
  align-items: center;
  justify-content: center;
}
.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;
}


/* otherPublicationsOverview */
.componentOtherPublications_wrapper {
  position: relative;
}
.componentOtherPublications_wrapper .item .pubCover,
.componentOtherPublications_wrapper .item .pubLogo {
  width: 100%;
}
.componentOtherPublications_wrapper .pubCover .tImage_image,
.componentOtherPublications_wrapper .pubLogo .tImage_image {
  position: relative;
}
.componentOtherPublications_wrapper .tImage img {
  width: 100%;
}

.tReader_listOfItems-otherPublicationsInLine {
  white-space: nowrap;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}
.tReader_listOfItems-otherPublicationsInLine .item {
  scroll-snap-align: start;
}
.componentOtherPublications_button {
  position: absolute;
  top: calc(50% - 1.625em);
  background-color: var(--background-color);
  color: var(--text-color);
  border: 1px solid var(--text-color);
  width: 3em;
  height: 3em;
  text-align: center;
}
.componentOtherPublications_button-left {
  left: 8px;
}
.componentOtherPublications_button-right {
  right: 8px;
}
.componentOtherPublications_button-hidden {
  display: none;
}

.componentOtherPublications_intro {
  vertical-align: bottom;
}
.componentOtherPublications_introInner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.componentOtherPublications_introLeft {
  display: inline-block;
  vertical-align: middle;
  width: 1px;
}
.componentOtherPublications_introBlock {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 30px);
  text-align: center;
}
.componentOtherPublications_introArrow {
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
  width: 30px;
  text-align: right;
}
.componentOtherPublications_intro .tImage {
  width: 80%;
  height: 3em;
  margin: 0 auto 12px;
}
.componentOtherPublications_intro .tImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.componentOtherPublications_intro p {
  font-size: 200%;
  line-height: 100%;
  font-weight: 300;
  white-space: initial;
  margin: 12px 0 0;
}


/* publisher info */
.publisherInfoPart {
  margin: 1.5em 0;
  line-height: 120%;
}
.publisherInfoPart-title {
  font-weight: bold;
}
.publisherInfoPart-triobo {
  color: #888;
}
.publisherInfoPart a {
  text-decoration: underline;
}
.publisherInfo .tImage {
  width: 160px;
  height: 40px;
  margin: 0 0 1em 0;
}
.publisherInfo .tImage  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.publisherInfo_poweredBy {
  display: block;
  width: 16em;
  height: 1.5em;
  margin: 2em 0 0 0;
  background-image: url('powered_by_Triobo.png?20240215');
  background-size: 100% 100%;
  cursor: pointer;
}

.noScrollSnap {
  scroll-snap-type: none;
}



/* on tablets phones */
@media (max-width: 1023px) {
  .otherPublicationsOverview {
    white-space: nowrap;
  }
  .otherPublicationsOverview .item {
    width: 140px;
    margin: 0 4px;
  }
  .otherPublicationsOverview .item .item_title {
    display: none;
  }
}

/* on mobile phones */
@media (max-width: 699px) {
  .trioboSearchbarShown:not(.trioboViewArticle) .tReader_searchbar {
    bottom: 3.6em;
  }

  .floatingLoader {
    bottom: 80px;
  }

  .otherPublicationsOverview .item {
    width: 110px;
  }

  .componentOtherPublications_intro .tImage {
    margin-bottom: 8px;
  }
  .componentOtherPublications_intro p {
    font-size: 100%;
    margin-top: 8px;
  }

  .issueBox_part-left {
    width: 30%;
  }
  .issueBox_part-right {
    width: 70%;
  }

  .item-subscription {
    padding: 24px 16px;
  }
}


.tReader_listOfItems-cartItems,
.tReader_listOfItems-orders {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 100px;
  min-height: 30vh;
}
.tReader_screenContent-cart .eShopInfo {
  display: none;
}

.buyProductDialog {
  width: 640px;
  max-height: 90%;
  overflow-y: auto;
}
.buyProductDialog_top {
  font-size: 80%;
  color: #0a0;
  background-color: #dfd;
  padding: 6px 14px 4px;
  margin: -12px -12px 12px;
}
.buyProductDialog_column {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}
.buyProductDialog_column-left {
  width: 40%;
  padding: 0 0 1em 0;
  position: relative;
}
.buyProductDialog_column-right {
  width: 60%;
  padding: 0 0 1em 1em;
}
.buyProductDialog_buttons {
  margin-top: 32px;
  text-align: center;
}
.buyProductDialog_buttons p {
  margin-bottom: 16px;
}

.buyProductDialog_category {
  font-weight: 300;
  font-size: 90%;
}
.buyProductDialog_itemName {
  font-weight: bold;
  margin-bottom: 16px;
}
.buyProductDialog_description {
  font-weight: 300;
  font-size: 90%;
}
.buyProductDialog .thumbnail {
  margin: 2px 0px;
  box-sizing: border-box;
  border: 1px solid var(--lines-color);
  cursor: pointer;
  line-height: 1;
  font-size: 0px;
}
.buyProductDialog .issueTagThumbnail .thumbnail,
.buyProductDialog .subscriptionThumbnail .thumbnail {
  border: 0 none;
  margin: 0;
}
.thumbnail-eshopPackage {
  padding-bottom: 77%;
}
.thumbnail-eshopPackage img {
  width: 100%;
}
.thumbnail-noThumbnail {
  padding-bottom: 10%;
}
.buyProductDialog .thumbnail img {
  width: 100%;
}

.buyProductDialog_optionsWrapper {
  border-top: 1px dotted var(--lines-color);
  padding: 2px 0;
}
.buyProductDialog_optionsWrapper:first-child {
  border-top: none;
}
.buyProductDialog_optionsInfo {
  opacity: 0.8;
  font-size: 80%;
}
.buyProductDialog_optionsInfo-hidden {
  display: none;
}

.buyProductDialog_quantity {
  width: 7em;
  margin-left: 8px;
  vertical-align: middle;
  margin-bottom: 4px;
}
.buyProductDialog_optionDropdown {
  display: inline-block;
  vertical-align: middle;
  padding: 6px 24px 6px 6px;
  font-size: 100%;
  background-position-y: 0;
}
.buyProductDialog_validFromDate {
  display: inline-block;
  width: 140px;
  vertical-align: middle;
  margin-bottom: 1px;
  padding: 7px 4px;
}

.buyProductDialog_optionsWrapper .mCheckbox {
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}


.tShop_cartDiv {
  display: block;
  padding: 2em;
  border-bottom: 1px dotted var(--lines-color);
}
.tShop_memberDiv {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
  padding: 2em;
}
.tShop_paymentDiv {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
  padding: 2em;
}
.tShop_bottom {
  border-top: 1px dotted var(--lines-color);
  display: block;
  padding: 2em;
}

.tShop_title {
  font-weight: 300;
  font-size: 160%;
  margin: 0.5em 0 0.5em;
}
.tShop_title-marginOnTop {
  margin-top: 32px;
}

.tShop_discountVoucherRow {
  box-sizing: border-box;
  background-color: rgba(255,255,255,0.75);
  border-radius: 3px;
  border: 1px solid var(--lines-color);
}
.tShop_discountVoucherRow .mInput {
  background-color: transparent;
}
.tShop_discountVoucherRow-invalid {
  border-color: #d00;
}
.tShop_discountVoucherCode {
  /* width: calc(100% - 24px); */
  width: 100%;
  font-family: courier;
  text-align: left;
  text-transform: uppercase;
  font-size: 14px;
  /* border: 0 none;
  margin: 0;
  padding: 6px 4px; */
}
.tShop_discountVoucherStatus {
  width: 24px;
  padding: 6px 0;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}
.tShop_discountVoucherInfo {
  margin: 0.25em 4px 1em;
  font-size: 90%;
}
.tShop_discountVoucherInfo-hidden {
  display: none;
}

.tShopMemberAddress-hidden {
  display: none;
}
.tShopMemberAddress .tShop_title {
  transition: 0.5s all;
  max-height: 48px;
}
.tShopMemberCreateAccount *,
.tShopMemberAddress_checkbox {
  transition: 0.5s all;
  max-height: 32px;
}
.tShopMemberAddress_checkbox-hidden {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.tShopMemberAddress .mDropdown {
  background-position-y: 1px;
}
.tShopMemberAddress_row {
  margin: 0;
  transition: 0.5s all;
  max-height: 32px;
}
.tShopMemberAddress_row-invalid {
  border-color: #d00;
}
.tShopMemberAddress_input {
  border: 1px solid var(--lines-color);
  border-radius: 0;
  border-bottom: 0px none;
  margin: 0;
  padding: 6px 4px;
  font-size: 14px;
}
.tShopMemberAddress_input:focus {
  border-color: var(--lines-color);
}
.tShopMemberAddress_input-companyName {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.tShopMemberAddress_DICVerifyRow {
  text-align: right;
}
.tShopMemberAddress_DICVerifyButton {
  margin: 2px;
  width: 60px;
  padding: 3px;
  text-align: center;
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
  cursor: pointer;
}



.tShop_combinedInput {
  box-sizing: border-box;
  background-color: var(--gray-f);
  border: 1px solid var(--lines-color);
}
.tShopMemberAddress_inputPart {
  display: inline-block;
  box-sizing: border-box;
}
.tShopMemberAddress_inputPart-input {
  width: calc(100% - 64px);
  font-size: 14px;
  border: 0 none;
  margin: 0;
  padding: 6px 4px;
}
.tShopMemberAddress_inputPart-status {
  margin: 2px;
  width: 60px;
  padding: 3px;
  text-align: center;
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
  cursor: pointer;
}
.tShopMemberAddress_inputPart-status:hover {
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
}
.tShopMemberAddress_inputPart-status:disabled:hover {
  color: var(--highlighting-color);
  background-color: var(--opposite-color);
}
.tShopMemberAddress:not(.tShopMemberAddress-includeCompany) .tShopMemberAddress_row-company {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.tShopMemberAddress_row:first-child>.tShopMemberAddress_input,
.tShopMemberAddress:not(.tShopMemberAddress-includeCompany) .tShopMemberAddress_row .tShopMemberAddress_input-name {
  border-top-left-radius: var(--area-border-radius, 0.375em);
  border-top-right-radius: var(--area-border-radius, 0.375em);
}
.tShopMemberAddress_row:last-child>.tShopMemberAddress_input {
  border-bottom: 1px solid var(--lines-color);
  border-bottom-left-radius: var(--area-border-radius, 0.375em);
  border-bottom-right-radius: var(--area-border-radius, 0.375em);
}
.tShopMemberAddress_row:last-child .tShopMemberAddress_input {
  border-bottom: 1px solid var(--lines-color);
}
.tShopMemberAddress_row:last-child .tShopMemberAddress_input:first-child {
  border-bottom-left-radius: var(--area-border-radius, 0.375em);
}
.tShopMemberAddress_row:last-child .tShopMemberAddress_input:last-child {
  border-bottom-right-radius: var(--area-border-radius, 0.375em);
}
.tShopMemberAddress_notes-hidden,
.tShopMemberDeliveryOptions-hidden {
  height: 0;
}
.tShopMemberCreateAccount-createHidden .tShopMemberCreateAccount_newAccountRow,
.tShopMemberCreateAccount-createHidden .tShopMemberCreateAccount_createRow,
.tShopMemberCreateAccount-newAccountHidden .tShopMemberCreateAccount_newAccountRow,
.tShopMemberCreateAccount-loginHidden .tShopMemberCreateAccount_loginRow,
.tShopMemberAddress_billing-hidden .tShopMemberAddress_row,
.tShopMemberAddress_billing-hidden .tShop_title,
.tShopMemberAddress_billing-hidden .tShopMemberAddress_checkbox,
.tShopMemberAddress_notes-hidden .tShop_note,
.tShopMemberAddress_notes-hidden .tShop_title,
.tShopMemberAddress_mailing-hidden .tShopMemberAddress_row,
.tShopMemberAddress_mailing-hidden .tShop_title,
.tShopMemberDeliveryOptions-hidden * {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.tShopMemberAddress_input-phonePrefix {
  display:inline-block;
  width: 4.5em;
  background-position-y: 0.3em;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0 none;
}
.tShopMemberAddress_input-phoneNumber {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: calc(100% - 4.5em);
}


.tShop_note {
  border-radius: 3px;
  border: 1px solid var(--lines-color);
  padding: 6px 4px;
  font-size: 14px;
  transition: 0.5s all;
  height: 80px;
  width: 100%;
  max-height: 80px;
}
.tShop_note:focus {
  border-color: var(--lines-color);
}

.tReader_listOfItems-cartItems .mRadioButtons {
  border-radius: 3px;
  border: 1px solid var(--lines-color);
  background-color: transparent;
  padding: 1px;
}
.tReader_listOfItems-cartItems .mRadioButtons_item {
  display: block;
  text-align: left;
  padding: 0.5em 0.5em 0.5em 2.5em;
  border-top: 1px solid var(--lines-color);
}
.tReader_listOfItems-cartItems .mRadioButtons_item:first-child {
  border-top: 0px none;
}
.tReader_listOfItems-cartItems .mRadioButtons_item-on {
  background-color: var(--inputs-background);
}
.tReader_listOfItems-cartItems .mRadioButtons_item i.fa {
  float: left;
  font-size: 28px;
  margin: 4px 8px 0 0;
  color: var(--gray-a);
}
.tReader_listOfItems-cartItems .info {
  font-size: 80%;
  color: var(--gray-8);
}
.tReader_listOfItems-cartItems .mRadioButtons_item-disabled,
.tReader_listOfItems-cartItems .mRadioButtons_item-disabled .info,
.tReader_listOfItems-cartItems .mRadioButtons_item-disabled i.fa {
  color: #ddd;
  opacity: 0.5;
}
.tShop_selectPickupPointWrapper {
  float: right;
  width: auto;
  display: none;
}
.tReader_listOfItems-cartItems .mRadioButtons_item-on .tShop_selectPickupPointWrapper {
  display: block;
}


.tShop_seller {
  line-height: 120%;
  margin: 4px 0;
}
.tShop_seller-title {
  font-weight: bold;
}
.tShop_seller-info {
  word-wrap: break-word;
}

.tShop_card {
  box-sizing: border-box;
  background-color: var(--gray-f);
  padding: 0.5em;
  border: 1px solid var(--highlighting-color);
}
.tShop_card-number {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.tShop_card-expiry {
  border-top: 0px none;
  border-bottom-left-radius: 3px;
  display: inline-block;
  width: 50%;
}
.tShop_card-cvc {
  border-top: 0px none;
  border-left: 0px none;
  border-bottom-right-radius: 3px;
  display: inline-block;
  width: 50%;
}
.tShop_alerts {
  color: #d00;
  font-size: 80%;
}

.tShop_cardLogosStrip {
  height: 16px;
  display: block;
  margin: 8px auto 0;
}
.tShop_info {
  margin-top: 0.5em;
  font-size: 90%;
}

.tShop_cartTableWrapper {
  background-color: rgba(128,128,128,0.1);
  border-radius: var(--area-border-radius);
  border: 1px solid var(--lines-color);
}
.tShopCart {
  border-collapse: collapse;
  width: 100%;
}
.tShopCart_row {
}
.tShopCart_row-header,
.tShopCart_row-total,
.tShopCart_row-totalAfterDiscountOrPostage {
  font-weight: bold;
}
.tShopCart_row-item:nth-child(even) {
  background-color: var(--inputs-background);
}
.tShopCart_row-postage .tShopCart_col,
.tShopCart_row-paymentFee .tShopCart_col,
.tShopCart_row-discount .tShopCart_col {
  padding-top: 0;
  padding-bottom: 0;
}
.tShopCart-noPostage .tShopCart_row-postage,
.tShopCart-noPaymentFee .tShopCart_row-paymentFee,
.tShopCart-noDiscount .tShopCart_row-discount,
.tShopCart-noDiscount.tShopCart-noPostage.tShopCart-noPaymentFee .tShopCart_row-totalAfterDiscountOrPostage,
.tShopCart-noAnotherEUCountrySell .tShopCart_row-anotherEUCountrySell,
.tShopCart-noVATColumns .tShopCart_col-netAmount,
.tShopCart-noVATColumns .tShopCart_col-VATRate,
.tShopCart-noQuantityColumn .tShopCart_col-quantity {
  display:none;
}


.tShopCart_col {
  box-sizing: border-box;
  padding: 6px;
  vertical-align: middle;
}
.tShopCart_thumbnailWrapper {
  width: 80px;
}
.tShopCart_thumbnailWrapper-issue {
  width: 50%;
  padding: 0 25%;
}
.tShopCart_thumbnailWrapper .thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tShopCart_col-title {
  width: 1000px;
  vertical-align: middle;
}
.tShopCart_col-netAmount, .tShopCart_col-VATRate, .tShopCart_col-grossAmount {
  text-align: right;
}
.tShopCart_col-remove {
  color: #d00;
  cursor: pointer;
}

.tShopCart_rowQuantity {
  border: 0 none;
  background-color: transparent;
  width: 6em;
}
.tShopCart_rowQuantity .mInputWithNumberControl_input {
  box-sizing: border-box;
  border-radius: 0;
  background-color: transparent;
  padding: 0 2px;
}
.tShopCart_rowQuantity .mInputWithNumberControl_button {
  background-color: transparent;
  color: var(--gray-8);
  border: 0 none;
  padding: 0;
  font-size: 14px;
}
.tShopCart_rowRecurrency {
  padding: 4px 0;
  text-align: left;
}
.tShopCart_rowRecurrencyTitle {
  margin: 8px 0 4px;
}
.tShopCart_rowRecurrencyInfo {
  display: none;
  font-size: 75%;
}
.tShopCart_rowRecurrentWrapperOn .tShopCart_rowRecurrencyInfo {
  display: block;
}
.tShopCart_col p {
}
.tShopCart_type {
  font-size: 66%;
  background-color: #bbb;
  color: #fff;
  display: inline-block;
  padding: 1px 4px;
  border-radius: 3px;
  margin: 4px 0 0;
  line-height: var(--def-line-height);
}
.tShopCart_category {
  font-size: 80%;
}
.tShopCart_title {
  font-weight: bold;
  margin: 0 0 4px;
}
.tShopCart_period {
  margin: 4px 0;
}
.tShopCart_info {
  margin: 4px 0;
  opacity: 0.8;
  font-size: 80%;
}

.item-order {
  background-color: var(--inputs-background);
  border-radius: var(--area-border-radius);
  border: 1px solid var(--lines-color);
  margin-bottom: 1em;
  padding: 0;
}
.item_orderInfo {
  padding: 0.5em;
  background-color: rgba(128,128,128,0.1);
}
.item_orderStatus {
  font-weight: bold;
  color: #d80;
}
.item_orderStatus-paid {
  color: #0a0;
}
.item_orderStatus-unpaid {
  color: #d00;
}
.item_orderItemsWrapper {
  padding: 0.5em;
  padding-left: 1.5em;
  list-style-type: disc;
  margin: 0;
}
.item_orderItem {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.item_orderSummary {
  clear: both;
  padding: 0.5em;
  border-top: 1px solid var(--lines-color);
  font-weight: bold;
}
.item_orderQRCode {
  float: right;
  width: 100px;
  height: 100px;
  padding: 0.5em;
}
.item_orderQRCode img {
  width: 100%;
  height: 100%;
}

@media (max-width: 719px) {
  .tShop_cart {
    display: block;
    font-size: 90%;
  }
  .tShopCart_row {
    display: block;
    position: relative;
    clear: both;
  }
  .tShopCart_col {
    display: block;
    box-sizing: border-box;
    padding: 4px;
  }
  .tShopCart_col-thumbnail {
    float: left;
  }
  .tShopCart_col-title {
    width: calc(100% - 2em);
  }
  .tShopCart_col-quantity {
    clear: left;
    width: calc(100% - 2em);
  }
  .tShopCart_col-netAmount {
    display: inline-block;
    width: calc(100% - 80px - 6em - 7em - 2em);
  }
  .tShopCart_col-VATRate {
    display: inline-block;
    width: 6em;
  }
  .tShopCart_col-grossAmount {
    display: inline-block;
    width: 7em;
  }
  .tShopCart-noVATColumns .tShopCart_col-grossAmount {
    display: block;
    width: calc(100% - 2em);
  }
  .tShopCart_col-remove {
    position: absolute;
    right: 0;
    top: 0;
  }

  .tShop_cartDiv {
    padding: 1em;
  }
  .tShop_memberDiv {
    display: block;
    width: auto;
    padding: 1em;
  }
  .tShop_paymentDiv {
    display: block;
    width: auto;
    padding: 1em;
  }
}
@media (max-width: 390px) {
  .tShopCart_col-thumbnail {
    width: 38px;
    height: 38px;
  }
  .tShopCart_col-thumbnail .tShopCart_thumbnailWrapper {
    width: 30px;
  }
  .tShopCart_col-netAmount {
    display: inline-block;
    width: calc(100% - 6em - 7em);
  }
}

