/* 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;
}

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(--highlight-color);
  -webkit-text-fill-color: var(--highlight-color);
  -webkit-box-shadow: 0 0 0 100px var(--black) inset;
  font-size: inherit;
}


.mConsole {
  position: fixed;
  z-index: 999999;
  bottom: 32px;
  left: 32px;
  right: 32px;
  width: auto;
  height: 30%;
  background-color: #ffee;
  color: #000;
  font-family: monospace;
  font-size: 10px;
  overflow-y: scroll;
}
.mConsole p {
  margin: 2px 0;
}
.mConsole-hidden {
  display: none;
}


.mScreen_overlay {
  position: fixed;
  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);
}


/* 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);
}
.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);
}

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

.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-column75 {
  width: 75%;
}
.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-top: 16px 0;
    border-left: 0 none;
    border-top: 1px solid var(--gray-c);
  }
  .mElementsWithLabels-column:first-child {
    border-top: 0px none;
    padding-top: 0;
  }
}

.mInputWithMenu {
  display: inline-block;
  border: 1px solid var(--gray-a);
  box-sizing: border-box;
  background-color: var(--gray-f);
}
.mInputWithMenu .mInput {
  display: inline-block;
  vertical-align: top;
  background-color: transparent;
  width: calc(100% - 2em);
  border: 0 none;
}
.mInputWithMenu .mButton {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 1px 0;
  padding: 2px 0;
  background-color: transparent;
  width: 2em;
  border: 0 none;
}


.mDropdown {
  border: 1px solid
}

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


/* 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;
}
.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);
}
.mClearBoth {
  clear: both;
}

.tCookieManager_mainDialog {
  width: 520px;
}
.tCookieManager_mainDialog p {
  font-size: 13px;
  line-height: 120%;
  margin: 8px 0;
}
.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: 4px 0;
}
.tCookieManager_serviceOptionTitle {
  font-weight: bold;
}
.tCookieManager_serviceDescription {
}

/* default colors */
:root {
  --highlighting-color: rgb(48,170,204);
  --opposite-color: #fff;
  --header-background: rgb(48,170,204);
  --header-icons: #fff;
  --background-color: #eee;
  --text-color: #444;
  --lines-color: #ddd;
  --controlbar-bg-color: rgba(255, 255, 255, 0.9);
  --container-bg-color: #ddd;

  --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;

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

.trioboThemeDark {
  --background-color: #111;
  --text-color: #ccc;
  --controlbar-bg-color: rgba(0, 0, 0, 0.9);
  --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-circle-o-notch:before {
  content: "\f1ce";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-search:before {
  content: "\f002";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-cog:before {
  content: "\f013";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.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-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-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-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-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;
}



/* 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(--opposite-color) inset;
}

.mConsole {
  font-size: 0.675em;
}

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

.mButton {
  font-family: Roboto;
  font-size: 100%; /* 14px; */
  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 1em;
  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 {
  background-color: var(--opposite-color);
  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.25em #4444;
  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);
}



.mDialog {
  color: var(--text-color);
  background-color: var(--background-color);
  border: 1px solid var(--highlighting-color);
  box-shadow: 0 0 2em var(--gray-0-25);
  font-size: 87.5%; /* 14px */
  border-radius: var(--area-border-radius, 0.375em);
  overflow: hidden;
  max-width: 95%;
}

.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.325em 0.5em;
}
.mDialog_headerClosingButton:hover {
  background-color: var(--opposite-color);
  color: var(--highlighting-color);
}
.mDialog_content {
  line-height: 120%;
}
.mDialog_content b {
  font-weight: bold;
}
.mDialog_subtitle {
  font-weight: bold;
  margin: 16px 0 0.5em;
}
.mDialog_buttons {
  border-top: 1px solid var(--lines-color);
  background-color: var(--background-color);
}

.mInput, .mTextarea {
  box-sizing: border-box;
  border: 1px solid var(--gray-8);
  border-radius: var(--area-border-radius, 0.375em);
  color: var(--gray-4);
  background-color: var(--gray-f);
  margin: 0 0 1px 0;
  padding: 0.125em 0.25em;
  outline: 0px none transparent;
  font-family: Roboto;
  font-size: 100%;
}
.mInput:focus, .mTextarea:focus {
}
.mInput:disabled, .mTextarea:disabled {
  background-color: var(--gray-d);
  color: var(--gray-8);
}
.mSelect, .mDropdown {
  border-radius: 0;
  border: 1px solid var(--gray-8);
  border-radius: 0.2em;
  color: var(--gray-4);
  background-color: var(--gray-f);
  margin: 0 0 1px 0;
  padding: 0.125em 0.25em;
  font-size: 87.5%; /* 14px; */
  background-position-y: -0.375em;
  cursor: pointer;
}

.mElementsWithLabels {
  padding: 0;
}
.mElementsWithLabels_row {
  margin: 0.125em 0;
}
.mElementsWithLabels_label {
  padding-top: 0.375em;
  display: inline-block;
  font-size: 100%;
}
.mElementsWithLabels_element-withLabel {
  display: inline-block;
}
.mElementsWithLabels_element * {
  vertical-align: top;
  line-height: 120%;
}

.mRadioRow {
  box-sizing: border-box;
}
.mRadioRow-searchScope {
  display: inline-flex;
}
.mRadioRow_item {
  padding: 0.25em 0.125em;
  color: var(--gray-a);
  background-color: var(--gray-f);
  border-top: 1px solid var(--gray-a);
  border-bottom: 1px solid var(--gray-a);
  border-right: 1px solid var(--gray-a);
}
.mRadioRow_item:first-child {
  border-left: 1px solid var(--gray-a);
}
.mRadioRow_item-on {
  color: var(--gray-f);
  background-color: var(--gray-a);
}

.mRadioButtons {
  background-color: transparent;
  text-align: center;
}
.mRadioButtons_item {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0.4em 0.4em 0.4em 1.5em;
  color: var(--text-color);
  font-size: 100%; /* 14px; */
  cursor: pointer;
  width: auto;
}
.mRadioButtons_item p {
  display: inline-block;
  width: auto;
}
.mRadioButtons_checkbox {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5em;
  margin: auto;
  width: 0.75em;
  height: 0.75em;
  border: 1px solid var(--highlighting-color);
  border-radius: 50%;
}
.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: 0.375em;
  height: 0.375em;
  background-color: var(--highlighting-color);
  border-radius: 50%;
}
.mRadioButtons_item-on .mRadioButtons_checkbox:after {
  opacity: 1;
}
.mCheckbox {
  text-align: center;
  padding: 0.5em;
}
.mCheckbox_checkbox {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  left: auto;
  margin-right: 0.5em;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid var(--lines-color);
  background-color: var(--opposite-color);
  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 p {
  display: inline-block;
  vertical-align: middle;
}
.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.tCookieManager_serviceTitle {
  text-align: left;
  padding: 0;
}
.mCheckbox.tCookieManager_serviceOptionTitle {
  text-align: left;
  padding: 0;
}

.mConsole_row-error {
  font-weight: bold;
  color: #d00;
}
.mConsole_row-important {
  color: #048;
  font-weight: bold;
}
.mConsole_row-construct {
  color: #a4a;
  font-weight: bold;
}
.mConsole_row-container {
  color: #4aa;
}
.mConsole_row-event {
  color: #f88;
}
.mConsole_row-download {
  color: #f80;
}
.mConsole_row-local {
  color: #084;
}
.mConsole_row-faded {
  opacity: 0.3;
}

/* 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.5s ease-out, opacity 0.5s 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-typeVariableObjectCrossfade .frame-typeStateNext {
  display: block;
  opacity: 0;
}
.frame-typeVariableObjectQuickHorizontal .frame-typeStateNext {
  display: block;
  transform: translateX(32px);
  opacity: 0;
}

.frame-typeImage {
  overflow: hidden;
  font-size: 0px !important;
  line-height: 1;
}
.frame-typeVideo {
  pointer-events: all;
  font-size: 0px !important;
}
.frame-typePdf {
  width: 100%;
  height: 100%;
  font-size: 0px !important;
}
.frame-typeOnline {
  pointer-events: all;
}

.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;
}
.trioboShowEasyReaderFrames .frame-easyReading {
  pointer-events: all;
}
.trioboShowEasyReaderFrames .frame-openSimpleArticle {
  cursor: zoom-in;
}
.trioboShowEasyReaderFrames .frame-openExternalLink {
  cursor: pointer;
}
.trioboShowEasyReaderFrames .frame-easyReading:not(.frame-typePdf) {
  border: 2px solid var(--highlighting-color);
}
.trioboShowEasyReaderFrames .frame-easyReading .frame_pdfPageHelper {
  position: absolute;
  box-sizing: border-box;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--highlighting-color);
}
.trioboShowEasyReaderFrames .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);
  opacity: 0.1;
  transition: opacity 0.5s;
}
.trioboShowEasyReaderFrames .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;
}
.trioboShowEasyReaderFrames .frame-openExternalLink:after {
  content: '\f08e';
}
.trioboShowEasyReaderFrames .frame-easyReading.frame-typePdf:after {
  right: 6px;
  bottom: 6px;
}
.trioboShowEasyReaderFrames .frame-easyReading:hover:before {
  opacity: 0.2;
}

.frame_par {
  margin: 0;
  border: 0px solid #000;
}
#desktop.enableTextSelection .frame_par {
  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_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 {
  pointer-events: all;
  position: relative;
  display: inline-block;
  width: auto;
  background-color: rgba(255,255,0,0.33);
}
b.w-animated {
  transition: 1s all;
}
b.w-selected {
  background-color: rgba(255,255,0,0.8);
  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);
  background-color: rgba(255,255,0,1);
  opacity: 0.5;
}

.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;

  width: 640px;
  max-width: calc(100vw - 8px);
  margin: 0;
  padding: 16px 32px;

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

  text-align: left;
  font-family: Roboto, helvetica, sans-serif;
  font-size: 16px;
  line-height: 150%;

  word-wrap: break-word;
}
@media (max-width: 511px) {
  .simpleArticle_content {
    padding: 8px 16px;
  }
}
.trioboThemeDark .simpleArticle_content {
  background-color: black;
  color: white;
}
.simpleArticle_content p {
  margin: 0.5em 0;
}
.simpleArticle_content h1 {
  font-weight: bold;
  font-size: 300%;
  line-height: 120%;
  margin: 0.5em 0;
}
.simpleArticle_content h2 {
  font-weight: bold;
  font-size: 150%;
  line-height: 120%;
  margin: 0.5em 0;
}
.simpleArticle_content h3 {
  font-weight: bold;
  font-size: 120%;
  margin: 0.5em 0;
}
.simpleArticle_content b {
  font-weight: bold;
}
.simpleArticle_content i {
  font-style: italic;
}
.simpleArticle_content a {
  text-decoration: none;
  border-bottom: 1px dotted var(--highlighting-color);
  color: var(--highlighting-color);
}
.simpleArticle_content blockquote {
  background-color: var(--gray-d);
  border-left: 0.5em solid var(--gray-8);
  padding: 0.5em 1em;
  margin: 0.5em 0;
}
.simpleArticle_content .ted_image img {
  width: 100%;
}


.container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.25s, opacity 0.25s;
  overflow-y: auto;
  background-color: var(--container-bg-color);
}
.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 {
  background-color: #fff;
  color: #000;
  transition: opacity 0.5s;
}
.article-isLoading {
  opacity: 0;
}
.article-empty {
  height: 100%;
  border: 4px dashed var(--gray-a);
  box-sizing: border-box;
  background-color: var(--gray-e);
}


.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 .thumbnail {
  margin: 2px 0px;
  box-sizing: border-box;
  border: 1px solid var(--lines-color);
  cursor: pointer;
}
.issueDetail .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: 200;
  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: 200;
  margin-bottom: 8px;
  font-size: 90%;
}

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


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

.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_title {
  margin: 0.5em 0 1em;
}

.registerNewMember_gdprText {
  font-size: 90%;
  margin: 0.5em 0;
  border-top: 1px solid var(--highlighting-color);
  border-bottom: 1px solid var(--highlighting-color);
  padding: 0.5em 0;
}
.registerNewMember_gdprText p {
  margin: 4px 0;
  line-height: 120%;
}
.registerNewMember_gdprText b {
  color: var(--highlighting-color);
}

.purchaseDialog {
  width: 500px;
  max-height: 90%;
  overflow-y: auto;
}
.purchaseDialog_top {
  font-size: 80%;
  color: #0a0;
  background-color: #dfd;
  padding: 6px 14px 4px;
  margin: -12px -12px 12px;
}
.purchaseDialog_column {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}
.purchaseDialog_column-left {
  width: 40%;
  padding: 0 0.5em 0.5em 0;
}
.purchaseDialog_column-right {
  width: 60%;
  padding: 0 0 0.5em 0.5em;
}
.purchaseDialog_itemName {
  font-weight: bold;
}
.purchaseDialog_title {
  font-weight: 200;
  font-size: 120%;
  margin: 4px 0 0.5em;
}
.purchaseDialog_title-marginOnTop {
  margin-top: 1em;
}
.purchaseDialog .thumbnail {
  margin: 2px 0px;
  box-sizing: border-box;
  border: 1px solid var(--lines-color);
  cursor: pointer;
  line-height: 1;
  font-size: 0px;
}
.thumbnail-eshopPackage {
  padding-bottom: 77%;
}
.thumbnail-noThumbnail {
  padding-bottom: 10%;
}

.purchaseDialog .thumbnail img {
  width: 100%;
}
.purchaseDialog_label {
  font-size: 80%;
  opacity: 0.8;
  margin-top: 0.5em;
}
.purchaseDialog_description {
  line-height: 120%;
}
.purchaseDialog_description b {
  color: var(--highlighting-color);
  font-weight: bold;
}
.purchaseDialog_description em {
  font-style: italic;
}

.purchaseDialog a {
  color: var(--highlighting-color);
}
.purchaseDialog_seller {
  line-height: 120%;
  margin: 4px 0;
}
.purchaseDialog_seller-title {
  font-weight: bold;
}
.purchaseDialog_seller-info {
  word-wrap: break-word;
}
.purchaseDialog_card {
  box-sizing: border-box;
  background-color: var(--gray-f);
  padding: 0.5em;
  border: 1px solid var(--highlighting-color);
}
.purchaseDialog_card-number {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.purchaseDialog_card-expiry {
  border-top: 0px none;
  border-bottom-left-radius: 3px;
  display: inline-block;
  width: 50%;
}
.purchaseDialog_card-cvc {
  border-top: 0px none;
  border-left: 0px none;
  border-bottom-right-radius: 3px;
  display: inline-block;
  width: 50%;
}
.purchaseDialog_alerts {
  color: #d00;
  font-size: 80%;
}
.purchaseDialog_cart {
}
.purchaseDialog_cart td i.fa-times {
  color: #d00;
  cursor: pointer;
}
.purchaseDialog_buttons {
  border-top: 1px solid var(--lines-color);
  padding: 16px 0 10px;
}

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

.purchaseDialog_methods .mRadioButtons {
  border-radius: 3px;
  border: 1px solid var(--gray-c);
  background-color: var(--gray-f);
}
.purchaseDialog_methods .mRadioButtons_item {
  display: block;
  text-align: left;
  padding: 6px 4px 6px 32px;
  border-top: 1px solid var(--gray-c);
}
.purchaseDialog_methods .mRadioButtons_item:first-child {
  border-top: 0px none;
}
.purchaseDialog_methods .info {
  font-size: 80%;
  color: var(--gray-8);
}

.purchaseDialog_info {
  margin-top: 0.5em;
  font-size: 90%;
}
.paymentAddress-hidden {
  display: none;
}
.paymentAddress .purchaseDialog_title {
  transition: 0.5s all;
  max-height: 24px;
}
.paymentAddress_checkbox {
  transition: 0.5s all;
  max-height: 32px;
}
.paymentAddress_checkbox-hidden {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.paymentAddress .mDropdown {
  background-position-y: 1px;
}
.paymentAddress_row {
  margin: 0;
  transition: 0.5s all;
  max-height: 32px;
}
.paymentAddress_input {
  border: 1px solid var(--gray-c);
  border-radius: 0;
  border-bottom: 0px none;
  margin: 0;
  padding: 6px 4px;
  font-size: 14px;
}
.paymentAddress_input-companyName {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.paymentAddress:not(.paymentAddress-includeCompany) .paymentAddress_row .paymentAddress_input-name {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.paymentAddress:not(.paymentAddress-includeCompany) .paymentAddress_row-company {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.paymentAddress_row:last-child .paymentAddress_input {
  border-bottom: 1px solid var(--gray-c);
}
.paymentAddress_row:last-child .paymentAddress_input:first-child {
  border-bottom-left-radius: 3px;
}
.paymentAddress_row:last-child .paymentAddress_input:last-child {
  border-bottom-right-radius: 3px;
}
.paymentAddress_notes-hidden {
  height: 0;
}
.paymentAddress_billing-hidden .paymentAddress_row,
.paymentAddress_billing-hidden .purchaseDialog_title,
.paymentAddress_billing-hidden .paymentAddress_checkbox,
.paymentAddress_notes-hidden .purchaseDialog_note,
.paymentAddress_notes-hidden .purchaseDialog_title,
.paymentAddress_mailing-hidden .paymentAddress_row,
.paymentAddress_mailing-hidden .purchaseDialog_title {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.purchaseDialog_discountVoucher {
  padding: 8px 0;
}
.purchaseDialog_discountVoucherRow {
  box-sizing: border-box;
  background-color: var(--gray-f);
  border-radius: 3px;
  border: 1px solid var(--gray-c);
}
.purchaseDialog_discountVoucherRow-invalid {
  border-color: #d00;
}
.purchaseDialog_discountVoucherCode {
  width: calc(100% - 24px);
  font-family: courier;
  text-align: left;
  text-transform: uppercase;
  font-size: 14px;
  border: 0 none;
  margin: 0;
  padding: 6px 4px;
}
.purchaseDialog_discountVoucherStatus {
  width: 24px;
  padding: 6px 0;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}
.purchaseDialog_discountVoucherInfo {
  font-size: 90%;
}
.purchaseDialog_discountVoucherInfo-invalid {
  color: #d00;
}
.purchaseDialog_cardLogosStrip {
  height: 16px;
  display: block;
  margin: 8px auto 0;
}

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

.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-serif;
/*  user-select: none; */
}

.tReader_screen {
  display: block;
  overflow: hidden;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  background-color: var(--treader-bg);
  color: var(--treader-text);
}

/* debug touches */
.debugTouchesLayer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.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: 75%;
}
.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;
}
.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;
}

.memberStatus .mButton {
  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%;
}
.memberStatus .mElementsWithLabels_label {
  font-size: inherit;
}
.memberStatus .mInput {
  font-size: inherit;
  border-radius: var(--button-border-radius, 0.375em);
  border: 1px solid var(--highlighting-color, currentColor);
  color: var(--highlighting-color, currentColor);
}
.memberStatus input:-webkit-autofill,
.memberStatus input:-webkit-autofill:hover,
.memberStatus input:-webkit-autofill:focus {
  border: 1px solid var(--highlighting-color, currentColor);
  -webkit-text-fill-color: var(--highlighting-color, currentColor);
}
.memberStatus .mCheckbox_checkbox:after {
  background-color: var(--highlighting-color, inherit);
}

/* 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{
}

/* otherPublicationsOverview */
.otherPublicationsOverview {
  height: 100%;
	font-size: 87.5%; /* 14px */
  box-sizing: border-box;
}
.pubLogo {
  height: 40px;
}
.pubCover .tImage_image {
  position: relative;
}
.otherPublicationsOverview .tImage img {
  width: 100%;
}

/* 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 .tReader_staticFile {
  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 */
}

.tReader_groupOfItems {
  margin: 0;
}

.tReader_groupHeader {
  margin: 32px 0 16px;
  padding: 0 14px;
}
.tReader_listOfItems-publications .tReader_groupHeader {
  padding: 0 24px;
}

.group_title {
  font-weight: 200;
  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;
  padding: 4px;
  overflow: hidden;
  width: 100%;
  position: relative;
  border: 1px solid transparent;
  margin: 2px;
  transition: 0.3s transform, 0.3s opacity;
}

.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  {
  transition: 0.5s transform;
}
.item-article:hover {
  transform: scale(1.02);
}

.item-publicationTagTitle {
  padding: 32px 24px 16px;
  width: 100%;
  display: block;
  font-weight: 200;
  font-size: 200%;
  cursor: default;
}
.item-publication {
  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);
}

.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: 3.7em;
  font-weight: 200;
  font-size: 90%;
  line-height: 120%;
}
.pubItem_publisher {
  margin: 16px 0 0;
}
.pubItem_publisherLink {
  text-decoration: underline;
}
.pubItem_buttons {
  padding: 0;
  box-sizing: border-box;
}
.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;
}
.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;
}
.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;
}
.thumbnail_wrapper-tagList {
  font-size: 0;
  width: 12%;
  display: inline-block;
  margin: 0;
}
.thumbnail_wrapper-tagCover {
  font-size: 0;
  width: 33.333%;
  display: inline-block;
  margin: 0;
}

.item-shop {
  vertical-align: top;
  padding: 25px 25px 24px 24px;
  border: 1px solid var(--lines-color);
  margin: -1px -1px 0 0;
  cursor: default;
}
.item-article {
  padding: 0;
  border: 1px solid var(--lines-color);
}
.item-article.item-centerfoldContains1 {
  border: 0px none;
}
.articleThumbnail_wrapper {
  box-sizing: border-box;
  cursor: pointer;
}
.item-centerfold .articleThumbnail_wrapper {
  display: inline-block;
  vertical-align: bottom;
  width: 50%;
}
.item-article.item-centerfoldContains1 .articleThumbnail_wrapper {
  border: 1px solid var(--lines-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;
}
.subscriptionOfferBox {
  font-size: 87.5%;
}
.subscriptionOfferBox .item-shop {
  margin: 0;
  padding: 16px;
}

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


.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;
}
.thumbnail_wrapper-issueInGroup {
  display: inline-block;
  margin: 0;
}
.tReader_groupWrapper-4thumbs .thumbnail_wrapper-issueInGroup {
  width: 50%;
}
.tReader_groupWrapper-9thumbs .thumbnail_wrapper-issueInGroup {
  width: 33.333%;
}

.thumbnail_wrapper-issueInGroup img {
  object-fit: cover;
  height: 100%;
}
.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;
  line-height: 120%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.item_status {
  margin-top: 4px;
  float: right;
  color: var(--highlighting-color, inherit);
  line-height: 120%;
  overflow: hidden;
}
.item_progress {
  font-size: 50%;
}
.item_date, .item_subtitle {
  font-weight: 200;
  line-height: 120%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.issueButtonsBar {

}
.issueButtonsBar_button {
  display: block;
  font-size: 87.5%;
  background-color: var(--highlighting-color, inherit);
  border: 1px solid var(--highlighting-color, currentColor);
  color: var(--opposite-color, currentColor);
  width: auto;
  border-radius: var(--button-border-radius, 0.375em);
  margin: 8px 0;
  padding: 0.5em 1.5em;
}
.issueButtonsBar_button:hover {
  background-color: var(--opposite-color, inherit);
  color: var(--highlighting-color, inherit);
  border-color: var(--highlighting-color, currentColor);
}
.issueButtonsBar_button-hidden {
  display: none;
}
.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: 200;
  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%;
}


.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: 120%;
  margin-bottom: 8px;
}
.tReader_featuredIssueDescription {
  font-weight: 200;
  font-size: 90%;
  line-height: 120%;
}
.tReader_featuredIssueInfo .issueButtonsBar {
  margin-top: 4px;
}
.tReader_featuredIssueInfo .issueButtonsBar_button-downloadPDF {
  display: none;
}

.shopItem_subscriptionButton {
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
  width: auto;
  padding-left: 24px;
  padding-right: 24px;
  margin: 8px 8px 0 0;
}

.applicationBox_content {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.applicationBox_title {
  font-weight: 200;
  font-size: 90%;
  line-height: 120%;
}
.layoutSize0 .applicationBox_title {
  display: none;
}
.applicationBox_content .tImage {
  width: 60%;
  border-radius: 8px;
  margin: 6px auto 6px;
  padding-bottom: 60%;
}
.applicationBox_content .tImage img {
  width: 100%;
  height: 100%;
}
.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);
  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% - 36px);
  padding: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  height: 36px;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-size: 120%;
}
.mInput-search:focus {
  border-color: var(--highlighting-color);
}
.mButton-search {
  background-color: var(--highlighting-color);
  border: 1px solid var(--highlighting-color);
  color: var(--opposite-color);
  width: 36px;
  padding: 8px 0px 10px;
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height: 36px;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  text-align: center;
}
.mButton-search:hover {
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
}
.mButton-searchNav {
  border-radius: 0;
  padding: 8px 12px;
  color: var(--text-color);
  background-color: transparent;
  border: 0 none;
}
.mButton-searchNav:hover {
  color: var(--highlighting-color);
  background-color: transparent;
}

/* 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);
  background-color: var(--controlbar-bg-color);
  border-bottom: 1px solid var(--lines-color);
  transform: translate(0, -4em);
  transition: all 0.5s;
  white-space: nowrap;
  backdrop-filter: blur(30px);
}
.trioboControlShown .tReader_controlbar {
  transform: none;
}
.controlbar_wrapper {
  padding: 0.5em;
  white-space: nowrap;
}
.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(--gray-0);
  border-radius: var(--button-border-radius);
  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(--gray-0);
  border-radius: 0;
  margin: 0;
  padding: 0.5em 1em;
  transition: all 0.5s;
  width: 3em;
  height: calc(2.5em - 2px);
  text-align: center;
  position: relative;
}
@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(--gray-0);
  border-color: var(--gray-0);
}
.controlbar_button-on,
.controlbar_button-on:hover {
  background-color: var(--gray-0);
  color: var(--gray-f);
}
.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;
}

.controlButton {
  position: fixed;
  background-color: var(--gray-f);
  color: var(--gray-0);
  border: 1px solid var(--gray-0);
  padding: 0.5em 1em;
  transition: all 0.5s;
  width: 3em;
  text-align: center;
}
.controlButton:hover {
  background-color: var(--gray-f);
  color: var(--gray-0);
  border: 1px solid var(--gray-0);
}

.controlButton-easyReading {
  width: auto;
  bottom: 8px;
  left: 8px;
  z-index: 2;
  transform: translate(0, 90px);
}
.controlButton-easyReading i {
  width: 1em;
  text-align: center;
}
.trioboShowEasyReaderFrames .controlButton-easyReading {
  transform: none;
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
  border-color: var(--opposite-color);
}
#desktop:not(.trioboShowEasyReaderFrames) .controlButton-easyReading .fa-times {
  display: none;
}
#desktop.trioboShowEasyReaderFrames .controlButton-easyReading .fa-book {
  display: none;
}

.controlButton-search {
  width: auto;
  bottom: 8px;
  right: 8px;
  z-index: 2;
  transform: translate(0, 90px);
}
.controlButton-left {
  top: calc(50% - 26px);
  left: 8px;
  z-index: 2;
  transform: translate(-90px, 0);
}
.controlButton-right {
  top: calc(50% - 26px);
  right: 8px;
  z-index: 2;
  transform: translate(90px, 0);
}
.trioboControlShown .controlButton-easyReading,
.trioboControlShown:not(.trioboSearchbarShown) .controlButton-search,
.trioboControlShown .controlButton-left,
.trioboControlShown .controlButton-right {
  transform: none;
}
@media (max-width: 1000px) {
  .controlButton-easyReading {
    transform: translate(-200px, 0);
  }
  .trioboSearchbarShown .controlButton-easyReading {
    bottom: 120px;
  }
}

.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: 2px;
  right: 2px;
  width: calc(100% - 3em);
  font-size: 90%;
  text-align: right;
}

/* thumbnail bar */
.thumbnailbar {
  box-sizing: border-box;
  width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  max-height: 0px;
  line-height: 0;
}
.trioboThumbnailbarShown:not(.trioboSearchbarShown) .thumbnailbar {
  padding: 8px 0 16px;
  max-height: 300px;
  transform: 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;
}
.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; */
}

.layoutSize0 .thumbnailbar_article-empty {
  width: 0px;
}
.layoutSize1 .thumbnailbar_article-empty {
  width: 0px;
}
.layoutSize2 .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;
}


/* 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_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,
.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: 1em;
  right: -0.5em;
  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;
}
.shop_cartInfo {
  text-align: center;
  padding: 16px 8px;
  display: none;
}
.trioboShoppingCartIsUsed .shop_cartInfo {
  display: block;
}

.tReader_overlays {
}

.mDialog a {
  color: var(--highlighting-color);
}

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

}
.dialogCustomInfo_content p {
  margin: 8px 0;
  line-height: 120%;
}

.dialogEasyReader {
  width: 66em;
}
.dialogEasyReader h1 {
  font-size: 200%;
  font-weight: bold;
}
.dialogEasyReader p {
  margin: 8px 0;
}

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

.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_mainDialog p {
  margin: 0.5em 0;
  line-height: 120%;
}
.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: 80%;
}
.eShopInfo_button {
  display: block;
  background-color: var(--highlighting-color);
  color: var(--opposite-color);
  margin: 16px auto;
}
.eShopInfo_publisher a {
  color: var(--highlighting-color, inherit);
}
.mDialog_note {
  padding: 0 0 8px;
  font-size: 80%;
}
.mDialog_link {
  padding: 8px 0;
  color: var(--highlighting-color);
  font-size: 80%;
  cursor: pointer;
}
.mDialog_link:hover {
  text-decoration: underline;
}
.mDialog_title {
  font-size: 120%;
  font-weight: 200;
  line-height: 120%;
  margin: 16px 0 8px;
}

.tBar .shopItem {
  border: 1px solid var(--highlighting-color);
  border-radius: 3px;
  padding: 8px;
  box-sizing: border-box;
  background-color: var(--background-color);
}
.shopItem_title {
  margin-bottom: 8px;
  font-weight: bold;
  line-height: 120%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.shopItem_description {
  font-weight: 200;
  line-height: 120%;
  margin-top: 8px;
}
.shopItem_buttons {
  float: right;
  width: 40%;
  padding: 0 0 0 16px;
  box-sizing: border-box;
}
.shopItem_button {
  width: 100%;
  margin: 4px 0 1px;
  padding: 0.5em;
}
.shopItem_button-restorePurchases {

}
.shopItem_issueTagCover {
  line-height: 1;
  font-size: 0px;
}
.shopItem_wrapper {
}

.shopItem_previewWrapper {
  width: 60%;
  height: 0;
  padding-bottom: 45%;
  position: relative;
  white-space: nowrap;
  perspective: 300px;
}
.shopItem_digitalPreviewImage {
  display: none;
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
}
.shopItem_thumbnail {
  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;
}
.shopItem_digitalPreviewSpaceDesktop {
  display: none;
  position: absolute;
  left: 21%;
  top: 9.5%;
  width: 71%;
  height: 51%;
  background-color: #444;
  overflow: hidden;
}
.issueThumbnailsWrapper {
  position: relative;
  height: 100%;
/*  animation-name: previewAnimation;
  animation-duration: 13s;
  animation-iteration-count: infinite;*/
}
@keyframes previewAnimation {
  0% {left: 0%;}
  25% {left: 0%;}
  30% {left: -100%;}
  55% {left: -100%;}
  60% {left: -200%;}
  90% {left: -200%}
  99% {left: -1%}
}


.shopItem_digitalPreviewSpaceTablet {
  display: none;
  position: absolute;
  left: 7.4%;
  top: 45.5%;
  width: 20.2%;
  height: 36.5%;
  overflow: hidden;
}
.shopItem_digitalPreviewSpaceTablet .issueThumbnailsWrapper {
  animation-duration: 7s;
}

.shopItem_digitalPreviewSpaceMobile {
  display: none;
  position: absolute;
  left: 31.4%;
  top: 64%;
  width: 7.4%;
  height: 17.4%;
  overflow: hidden;
}
.shopItem_digitalPreviewSpaceMobile .issueThumbnailsWrapper {
  animation-duration: 11s;
}
.shopItem_previewWrapper .tImage {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.shopItem_digitalPreviewSpaceDesktop .tImage {
  width: 44%;
}
.shopItem_digitalPreviewSpaceDesktop .tImage:first-child {
  margin-left: 28%;
  margin-right: 28%;
}
.shopItem_digitalPreviewSpaceDesktop .tImage:nth-child(2) {
  margin-left: 6%;
}
.shopItem_digitalPreviewSpaceDesktop .tImage:nth-child(3) {
  margin-right: 6%;
}
.shopItem_digitalPreviewSpaceDesktop .tImage:nth-child(4) {
  margin-left: 6%;
}
.shopItem_digitalPreviewSpaceDesktop .tImage:nth-child(5) {
  margin-right: 6%;
}

.shopItem_previewWrapper .tImage .tImage_image {
  position: relative;
  width: 100%;
  height: 100%;
}

.shopItem_printPreviewSpace {
  display: none;
  position: absolute;
  left: 68%;
  top: 36%;
  width: 30%;
  height: 55%;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
  transform: rotateY(-11deg) rotateZ(8deg);
  overflow: hidden;
}
.shopItem_previewWrapper-print:not(.shopItem_previewWrapper-digital) .shopItem_printPreviewSpace {
  left: 28%;
  top: 0%;
  width: 46%;
  height: 86%;
}
.shopItem_printPreviewSpace .issueThumbnailsWrapper {
  animation: none;
}

.shopItem_specialBadge {
  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%);
}
.shopItem_specialBadge: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,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');
}

.shopItem_previewWrapper-digital .shopItem_digitalPreviewImage,
.shopItem_previewWrapper-digital .shopItem_digitalPreviewSpaceDesktop,
.shopItem_previewWrapper-digital .shopItem_digitalPreviewSpaceTablet,
.shopItem_previewWrapper-digital .shopItem_digitalPreviewSpaceMobile,
.shopItem_previewWrapper-print .shopItem_printPreviewSpace,
.shopItem_previewWrapper-special .shopItem_specialBadge {
  display: block;
}

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


.mConsole {
  z-index: 3;
}

/* 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) {
  .mConsole {
    bottom: 8em;
  }

  .trioboSearchbarShown:not(.trioboViewArticle) .tReader_searchbar {
    bottom: 3.6em;
  }

  .floatingLoader {
    bottom: 80px;
  }

  .otherPublicationsOverview .item {
    width: 110px;
  }
}


