
    .img-text {
      display: block;
      text-align: center;
      font-size: 14px !important;
      margin-top: 10px;
    }
          .szn-suggest-list--dark {
            --color-box-background: #333;
            --color-box-border: #555;
            --color-element-background: #555;
            --color-text: #f0f0f0;
            --color-text-metadata: #999;
            --color-bakground-metadata: #fff;
            --color-button: #f0f0f0;
            --color-miniapp-label: #999;
            --color-label: #999;
          }

          .szn-suggest-list--light,
          .szn-suggest-list--system {
            --color-box-background: #fff;
            --color-box-border: #eee;
            --color-element-background: #eee;
            --color-text: #111;
            --color-text-metadata: #999;
            --color-bakground-metadata: #fff;
            --color-button: #111;
            --color-miniapp-label: #999;
            --color-label: #999;
          }

          @media (prefers-color-scheme: dark) {
            .szn-suggest-list--system {
              --color-box-background: #333;
              --color-box-border: #555;
              --color-element-background: #555;
              --color-text: #f0f0f0;
              --color-text-metadata: #999;
              --color-bakground-metadata: #fff;
              --color-button: #f0f0f0;
              --color-miniapp-label: #999;
              --color-label: #999;
            }
          }

          .szn-suggest-list {
            position: relative;
            z-index: 401;
            font-family:
              Arial CE,
              Arial,
              Helvetica CE,
              Helvetica,
              sans-serif;
          }

          .szn-suggest-list--overlay-off {
            position: relative;
            z-index: 401;
          }

          .szn-suggest-list__overlay {
            position: absolute;
            inset: 0;
            z-index: 400;
            min-width: 100%;
            min-height: 100%;
            background-color: transparent;
            opacity: 0;
          }

          .szn-suggest-list__overlay__cover {
            position: relative;
            inset: 0;
            z-index: 400;
            min-width: 100%;
            min-height: 100%;
            background-color: #000;
          }

          @keyframes fadeOut {
            0% {
              opacity: 1;
            }

            to {
              opacity: 0;
            }
          }

          @keyframes fadeIn {
            0% {
              opacity: 0;
            }

            to {
              opacity: 1;
            }
          }

          .szn-suggest-list__list {
            margin: 0;
            padding: 0;
            list-style: none;
          }

          .szn-suggest-list__list--boxed {
            border: 1px solid #eee;
            border-radius: 4px;
            overflow: hidden;
            background-color: #fff;
            box-shadow: 0 2px 4px #0003;
          }

          .szn-suggest-list__item {
            margin: 0;
            padding: 10px 12px;
          }

          .szn-suggest-list__item--indented {
            padding-left: 56px;
          }

          .szn-suggest-list__item--text {
            padding-top: 4px;
            padding-bottom: 4px;
            cursor: pointer;
          }

          .szn-suggest-list__item--text:first-child {
            margin-top: 8px;
          }

          .szn-suggest-list__item--text:last-child {
            margin-bottom: 8px;
          }

          .szn-suggest-list__item--text.szn-suggest-list__item--selected {
            background-color: #eee;
          }

          .szn-suggest-list__text {
            display: flex;
            flex-flow: row nowrap;
            justify-content: flex-start;
          }

          @supports (display: -webkit-box) {
            .szn-suggest-list__text {
              min-height: 36px;
              overflow: hidden;
              align-items: center;
            }
          }

          .szn-suggest-list__text-value {
            display: inline-block;
            margin: 4px 0;
            max-width: calc(100% - 50px);
            flex-shrink: 0;
            overflow: hidden;
            font-size: 16px;
            font-weight: 700;
            line-height: 36px;
            color: #111;
            white-space: nowrap;
          }

          .szn-suggest-list__text-value--short {
            max-width: calc(100% - 82px);
            text-overflow: ellipsis;
          }

          @supports (display: -webkit-box) {
            .szn-suggest-list__text-value {
              display: -webkit-box;
              -webkit-line-clamp: 2;
              -webkit-box-orient: vertical;
              line-height: 18px;
              white-space: normal;
              text-overflow: ellipsis;
            }
          }

          .szn-suggest-list__text-value--emphasized {
            font-weight: 400;
          }

          .szn-suggest-list__text-metadata--text {
            display: inline-block;
            overflow: hidden;
            font-size: 14px;
            line-height: 36px;
            color: #999;
            white-space: nowrap;
            text-overflow: ellipsis;
          }

          .szn-suggest-list__text-metadata--image {
            display: inline-block;
            border-radius: 8px;
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            overflow: hidden;
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
          }

          .szn-suggest-list__text-metadata--image--dark {
            opacity: 0.9;
          }

          .szn-suggest-list__text-metadata--image--rounded {
            border-radius: 50%;
          }

          .szn-suggest-list__text-metadata--leading {
            display: inline-block;
            margin-right: 12px;
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            overflow: hidden;
          }

          .szn-suggest-list__text-metadata-container {
            display: flex;
            height: 36px;
            flex-grow: 1;
            overflow: hidden;
            flex-wrap: wrap;
            justify-content: space-between;
            white-space: nowrap;
          }

          .szn-suggest-list__text-bottom-metadata-container {
            display: flex;
            margin-top: 2px;
            height: 16px;
            flex-grow: 1;
            overflow: hidden;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-end;
          }

          .szn-suggest-list__text-metadata--bottom {
            padding: 2px 0;
            height: 16px;
            font-weight: 400;
            line-height: 12px;
          }

          .szn-suggest-list__text-bottom-metadata-container .szn-suggest-list__text-metadata--bottom {
            font-size: 12px;
          }

          .szn-suggest-list__text-metadata-container--prioritize-aside-meta-data {
            flex-direction: row-reverse;
          }

          .szn-suggest-list__text-metadata--trailing {
            margin-left: 8px;
            max-width: calc(100% - 8px);
            flex: 0 0 auto;
          }

          .szn-suggest-list__text-button+.szn-suggest-list__text-metadata--trailing {
            max-width: calc(100% - 40px);
          }

          .szn-suggest-list__text-metadata--text.szn-suggest-list__text-metadata--trailing:before {
            content: "\2013  ";
          }

          .szn-suggest-list__text-metadata--aside {
            margin-left: 8px;
            flex: 0 0 auto;
            text-align: right;
          }

          .szn-suggest-list__text-button {
            display: flex;
            margin: auto 4px;
            border: none;
            border-radius: 50%;
            min-width: 32px;
            min-height: 32px;
            justify-content: center;
            align-items: center;
            background: none;
            cursor: pointer;
            opacity: 0.4;
          }

          .szn-suggest-list__text-button svg {
            fill: #111;
          }

          .szn-suggest-list__text-button:hover {
            opacity: 1;
          }

          .szn-suggest-list__text-button-icon {
            width: 13px;
            height: 13px;
          }

          .szn-suggest-list__miniapp-label {
            display: block;
            margin: 0 0 8px;
            font-size: 14px;
            line-height: 20px;
            color: #999;
          }

          .szn-suggest-list__miniapp-value {
            display: block;
            margin: 0;
            font-size: 16px;
            font-weight: 700;
            line-height: 20px;
            color: #111;
          }

          .szn-suggest-list__item--miniapp {
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
          }

          .szn-suggest-list__item--miniapp:first-child {
            border-top: none;
          }

          .szn-suggest-list__item--miniapp:last-child {
            border-bottom: none;
          }

          .szn-suggest-list__item--miniapp+.szn-suggest-list__item--miniapp {
            border-top: none;
          }

          .szn-suggest-list__item--label {
            padding-top: 4px;
            padding-bottom: 4px;
          }

          .szn-suggest-list__item--label:first-child {
            margin-top: 8px;
          }

          .szn-suggest-list__item--label:last-child {
            margin-bottom: 8px;
          }

          .szn-suggest-list__label-value {
            display: block;
            margin: 0;
            font-size: 14px;
            line-height: 20px;
            color: #999;
            white-space: nowrap;
          }

          .szn-suggest-list__tiled-list {
            margin-bottom: 8px;
            overflow-x: auto;
          }

          .szn-suggest-list__tiled-list ul {
            display: inline-flex;
            margin: 0 6px 0 8px;
            padding: 0;
            overflow-x: auto;
            list-style: none;
          }

          .szn-suggest-list__tiled-item {
            display: inline-block;
            position: relative;
            box-sizing: border-box;
            padding: 8px;
            width: 120px;
            cursor: pointer;
          }

          .szn-suggest-list__tiled-text-value {
            display: inline-block;
            margin-top: 8px;
            max-width: 100%;
            flex-shrink: 0;
            overflow: hidden;
            font-size: 14px;
            font-weight: 700;
            line-height: 36px;
            text-align: left;
            color: #111;
            white-space: nowrap;
          }

          .szn-suggest-list__tiled-text-value--emphasized {
            font-weight: 400;
          }

          @supports (display: -webkit-box) {
            .szn-suggest-list__tiled-text-value {
              display: -webkit-box;
              -webkit-line-clamp: 2;
              -webkit-box-orient: vertical;
              line-height: 18px;
              white-space: normal;
              text-overflow: ellipsis;
            }
          }

          .szn-suggest-list__tiled-item.szn-suggest-list__item--selected {
            border-radius: 4px;
            background-color: #eee;
          }

          .szn-suggest-list__tiled-text-metadata {
            margin: 0;
            border-radius: 8px;
            width: 104px;
            height: 104px;
            flex-shrink: 0;
            overflow: hidden;
            background-color: #fff;
            opacity: 0.9;
          }

          .szn-suggest-list__tiled-text-metadata--image {
            display: block;
            width: 104px;
            height: 104px;
            background-position: center center;
            background-size: contain;
            background-repeat: no-repeat;
            mix-blend-mode: multiply;
          }

          @supports (display: var(--prop)) {
            .szn-suggest-list__list--boxed {
              border: 1px solid var(--color-box-border);
              background-color: var(--color-box-background);
            }

            .szn-suggest-list__item--text.szn-suggest-list__item--selected {
              background-color: var(--color-element-background);
            }

            .szn-suggest-list__text-value {
              color: var(--color-text);
            }

            .szn-suggest-list__text-metadata--text {
              color: var(--color-text-metadata);
            }

            .szn-suggest-list__text-button svg {
              fill: var(--color-button);
            }

            .szn-suggest-list__miniapp-label {
              color: var(--color-miniapp-label);
            }

            .szn-suggest-list__miniapp-value {
              color: var(--color-text);
            }

            .szn-suggest-list__item--miniapp {
              border-top: 1px solid var(--color-box-border);
              border-bottom: 1px solid var(--color-box-border);
            }

            .szn-suggest-list__label-value {
              color: var(--color-label);
            }

            .szn-suggest-list__tiled-text-value {
              color: var(--color-text);
            }

            .szn-suggest-list__tiled-item.szn-suggest-list__item--selected {
              background-color: var(--color-element-background);
            }

            .szn-suggest-list__tiled-text-metadata {
              background-color: var(--color-bakground-metadata);
            }
          }

          .szn-suggest-list__item--buttons {
            display: flex;
            margin-top: auto;
            padding-bottom: 24px;
            justify-content: center;
            gap: 16px;
          }

          .szn-suggest-list__button {
            border: 0;
            border-radius: 100px;
            padding: 8px 16px;
            justify-content: center;
            font-weight: 700;
            background: #f4f4f4;
          }

          .szn-suggest-list__button:hover {
            color: var(--color-text);
          }

          .szn-mobile-input-with-suggest-list--dark {
            --color-input-background: #333;
            --color-input-shadow: #111;
            --color-text: #f0f0f0;
            --color-text-placeholder: #999;
            --color-box-background: #333;
            --color-button-primary: #c00;
            --color-button-search: #f0f0f0;
            --color-button-roundedBackground: #eee;
            --color-button-close: #000;
            --color-button-clear: #999;
            --color-button-back: #f0f0f0;
            --color-button-disabled: #999;
          }

          .szn-mobile-input-with-suggest-list--light,
          .szn-mobile-input-with-suggest-list--system {
            --color-input-background: #fff;
            --color-input-shadow: #ccc;
            --color-text: #111;
            --color-text-placeholder: #999;
            --color-box-background: #fff;
            --color-button-primary: #c00;
            --color-button-search: #f0f0f0;
            --color-button-roundedBackground: #eee;
            --color-button-close: #000;
            --color-button-clear: #999;
            --color-button-back: #111;
            --color-button-disabled: #999;
          }

          @media (prefers-color-scheme: dark) {
            .szn-mobile-input-with-suggest-list--system {
              --color-input-background: #333;
              --color-input-shadow: #111;
              --color-text: #f0f0f0;
              --color-text-placeholder: #999;
              --color-box-background: #333;
              --color-button-primary: #c00;
              --color-button-search: #f0f0f0;
              --color-button-keyboardBackground: #f0f0f0;
              --color-button-keyboard: #404040;
              --color-button-roundedBackground: #eee;
              --color-button-close: #000;
              --color-button-clear: #999;
              --color-button-back: #f0f0f0;
              --color-button-disabled: #999;
            }
          }

          .szn-mobile-input-with-suggest-list--dark,
          .szn-mobile-input-with-suggest-list--light,
          .szn-mobile-input-with-suggest-list--system {
            height: 100%;
          }

          .szn-mobile-input-with-suggest-list__controlPanel {
            display: flex;
            position: fixed;
            left: 0;
            top: 0;
            z-index: 10000;
            box-sizing: border-box;
            border: none;
            padding: 8px;
            width: 100%;
            height: 56px;
            align-items: center;
            background-color: var(--color-input-background);
            box-shadow: 0 0 8px var(--color-input-shadow);
          }

          .szn-mobile-input-with-suggest-list__controlPanel__input-2,
          .szn-mobile-input-with-suggest-list__controlPanel__input-3 {
            box-sizing: border-box;
            margin: 0;
            outline: none;
            border: none;
            height: 40px;
            overflow: hidden;
            color: var(--color-text);
            background-color: var(--color-input-background);
          }

          .szn-mobile-input-with-suggest-list__controlPanel__input-2::placeholder,
          .szn-mobile-input-with-suggest-list__controlPanel__input-3::placeholder {
            color: var(--color-text-placeholder);
          }

          .szn-mobile-input-with-suggest-list__controlPanel__input-2 {
            width: calc(100vw - 112px);
          }

          .szn-mobile-input-with-suggest-list__controlPanel__input-3 {
            width: calc(100vw - 160px);
          }

          .szn-mobile-input-with-suggest-list__suggestList {
            position: fixed;
            left: 0;
            top: 56px;
            z-index: 9999;
            width: 100vw;
            height: calc(100% - 56px);
            overflow-y: scroll;
            background-color: var(--color-box-background);
          }

          @keyframes speakingLeft {
            0% {
              transform: translate(0);
            }

            20% {
              transform: translate(-4px);
            }

            50% {
              transform: translate(7.5px);
            }

            80% {
              transform: translate(-4px);
            }

            to {
              transform: translate(0);
            }
          }

          @keyframes speakingRight {
            0% {
              transform: translate(0);
            }

            20% {
              transform: translate(4px);
            }

            50% {
              transform: translate(-7.5px);
            }

            80% {
              transform: translate(4px);
            }

            to {
              transform: translate(0);
            }
          }

          @keyframes speaking {
            0% {
              transform: scale(1);
            }

            20% {
              transform: scaleX(1.5);
            }

            50% {
              transform: scaleX(0.25);
            }

            80% {
              transform: scaleX(1.5);
            }

            to {
              transform: scale(1);
            }
          }

          .szn-mobile-input-with-suggest-list__button {
            display: flex;
            margin: 0;
            outline: none;
            border: transparent;
            border-radius: 4px;
            padding: 0;
            width: 48px;
            height: 40px;
            justify-content: center;
            align-items: center;
            background-color: transparent;
            background-position: center;
            background-repeat: no-repeat;
            cursor: pointer;
          }

          .szn-mobile-input-with-suggest-list__button--primary {
            background-color: var(--color-button-primary);
          }

          .szn-mobile-input-with-suggest-list__button--rounded {
            border-radius: 50%;
            height: 48px;
            background-color: var(--color-button-roundedBackground);
          }

          .szn-mobile-input-with-suggest-list__button--icon-search svg path {
            color: var(--color-button-search);
            fill: var(--color-button-search);
          }

          .szn-mobile-input-with-suggest-list__button--icon-clear {
            color: var(--color-button-clear);
            fill: var(--color-button-clear);
          }

          .szn-mobile-input-with-suggest-list__button--icon-back {
            color: var(--color-button-back);
            fill: var(--color-button-back);
          }

          .szn-mobile-input-with-suggest-list__button--icon-close {
            color: var(--color-button-close);
            fill: var(--color-button-close);
          }

          .szn-mobile-input-with-suggest-list__button--disabled {
            background-color: var(--color-button-disabled);
            cursor: not-allowed;
          }

          .ribbon-badge {
            display: flex;
            z-index: 9001;
            min-width: 50px;
            height: 42px;
            flex-shrink: 0;
            justify-content: flex-end;
            align-items: center;
          }

          @media all and (min-width: 600px) {
            .ribbon-badge {
              min-width: 192px;
            }
          }

          .ribbon-badge szn-login-widget {
            --icon: var(--ribbon-notifications-color, #c0c0c0);
            --icon-hover: var(--ribbon-notifications-color-hover, #000000);
          }

          .ribbon-button {
            display: flex;
            position: relative;
            flex-shrink: 0;
            align-items: center;
            text-decoration: none;
          }

          .ribbon-button__button {
            display: flex;
            box-sizing: border-box;
            margin: 0;
            border: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            overflow: visible;
            justify-content: center;
            align-items: center;
            font-family: inherit;
            font-size: 100%;
            line-height: 100%;
            text-align: center;
            color: inherit;
            text-transform: none;
            background: transparent;
            cursor: pointer;
            outline: none;
          }

          .ribbon-button__button .ribbon-icon {
            color: inherit;
          }

          .ribbon-control__icon {
            margin-right: 16px;
            width: 14px;
            width: var(--ribbon-control-icon-width, 14px);
          }

          .ribbon-control__label {
            margin-right: 16px;
            flex-shrink: 0;
            color: #c00;
            color: var(--ribbon-control-label-color, #cc0000);
          }

          .ribbon-control__icon~.ribbon-control__label {
            display: none;
          }

          @media all and (min-width: 600px) {
            .ribbon-control__icon {
              margin-right: 6px;
            }

            .ribbon-control__icon~.ribbon-control__label {
              display: block;
            }
          }

          .ribbon-menu {
            font-family:
              Trivia Seznam,
              Helvetica,
              Arial,
              sans-serif;
            position: fixed;
            inset: 56px 0 0;
            z-index: 9000;
            box-sizing: border-box;
            width: 100%;
            height: calc(100% - 56px);
            height: calc(var(--ribbon-inner-height, 100%) - 56px);
            overflow: hidden;
            transition: opacity 0.4s ease;
          }

          @media (max-width: 599px) {

            .ribbon-search-desktop,
            .ribbon-search-desktop__submit {
              display: none !important;
            }
          }

          .ribbon-menu--hidden {
            pointer-events: none;
            visibility: hidden;
            opacity: 0;
          }

          .ribbon-menu__button {
            position: absolute;
            right: 0;
            top: 0;
            width: 44px;
            height: 44px;
            color: #a0a0a0;
            color: var(--ribbon-submenu-button-color, #a0a0a0);
          }

          .ribbon-menu__button--up {
            transform: rotate(180deg);
          }

          .ribbon-menu__content {
            position: absolute;
            inset: 0;
            box-sizing: border-box;
            padding: 16px 12px;
            width: 100%;
            height: 100%;
            overflow-y: scroll;
            background: #fafafa;
            background: var(--ribbon-menu-background-color, #fafafa);
            transition: left 0.4s ease;
            -webkit-overflow-scrolling: touch;
          }

          .ribbon-menu__content:before {
            position: absolute;
            left: 0;
            top: -30px;
            width: 100%;
            height: 30px;
            content: "";
            box-shadow:
              0 0 2px #0000001a,
              0 8px 30px -12px #0000001f;
          }

          .ribbon-menu__content--hidden {
            left: -100%;
          }

          .ribbon-menu__item {
            display: block;
            position: relative;
            padding: 0 8px;
            min-height: 44px;
            font-size: 16px;
            font-weight: 400;
            line-height: 44px;
            color: #000;
            color: var(--ribbon-menu-item-color, #000000);
          }

          .ribbon-menu__link {
            font-size: inherit;
            font-weight: inherit;
            color: inherit;
            text-decoration: none;
          }

          .ribbon-menu__link:visited {
            color: inherit;
          }

          .ribbon-menu__primary,
          .ribbon-menu__secondary {
            margin: 0;
            padding: 0;
            list-style: none;
          }

          .ribbon-menu__primary {
            border-top: none;
          }

          .ribbon-menu__primary>.ribbon-menu__item {
            border-bottom: 1px solid #f0f0f0;
            border-bottom: 1px solid var(--ribbon-menu-separator-color, #f0f0f0);
          }

          .ribbon-menu__primary>.ribbon-menu__item:first-child {
            border-top: 1px solid #f0f0f0;
            border-top: 1px solid var(--ribbon-menu-separator-color, #f0f0f0);
            font-weight: 700;
          }

          .ribbon-menu__primary>.ribbon-menu__item:nth-child(n + 2) {
            color: #c00;
            color: var(--ribbon-menu-primary-color, #cc0000);
          }

          .ribbon-menu__secondary {
            max-height: 1056px;
            overflow: hidden;
            transition: max-height 0.8s ease;
          }

          .ribbon-menu__secondary--hidden {
            max-height: 0;
            transition-timing-function: cubic-bezier(0, 1, 0, 1);
            border-top: none;
          }

          @media all and (min-width: 600px) {
            .ribbon-menu {
              background: #00000080;
            }

            .ribbon-menu__button {
              display: none;
            }

            .ribbon-menu__content {
              padding: 18px 30px;
              width: 436px;
              scrollbar-width: none;
              -ms-overflow-style: none;
            }

            .ribbon-menu__content::-webkit-scrollbar {
              width: 0;
              height: 0;
            }

            .ribbon-menu__content--hidden {
              left: -436px;
            }

            .ribbon-menu__item {
              padding: 0;
              min-height: 24px;
              line-height: 24px;
            }

            .ribbon-menu__link:hover {
              text-decoration: underline;
            }

            body a:focus,
            body a:hover {
              -webkit-text-decoration: underline;
              text-decoration: underline;
            }

            .ribbon-menu__primary>.ribbon-menu__item {
              margin-bottom: 24px;
              border: 0;
              font-weight: 700;
            }

            .ribbon-menu__primary>.ribbon-menu__item:first-child {
              border: 0;
            }

            .ribbon-menu__secondary {
              margin-top: 8px;
              margin-bottom: 6px;
              columns: 2 180px;
            }

            .ribbon-menu__secondary--hidden {
              max-height: none;
            }

            .ribbon-menu__secondary>.ribbon-menu__item {
              margin-bottom: 4px;
              font-size: 15px;
            }
          }

          .ribbon-menu__button .ribbon-icon {
            height: 22px;
          }

          .ribbon-search {
            display: flex;
            position: fixed;
            left: 8px;
            top: 0;
            z-index: 9002;
            padding-top: 8px;
            width: 100%;
            max-width: calc(100% - 98px);
            flex-direction: column;
            transition:
              opacity 0.4s ease-in-out,
              visibility 0.4s;
          }

          .ribbon-search--hidden {
            visibility: hidden;
            opacity: 0;
          }

          .ribbon-search__bar {
            display: flex;
            height: 40px;
          }

          @media all and (min-width: 600px) {
            .ribbon-search {
              position: relative;
              left: 0;
              padding-top: 0;
              max-width: 614px;
            }
          }

          .ribbon-search-desktop {
            display: flex;
            position: relative;
            max-width: calc(100% - 48px);
            flex: 1;
            flex-direction: column;
          }

          @media all and (min-width: 600px) {
            .ribbon-search-desktop {
              max-width: calc(100% - 64px);
            }
          }

          .ribbon-search-desktop__submit {
            border-radius: 0 4px 4px 0;
            width: 48px;
            height: 100%;
            flex-shrink: 0;
            color: #fff;
            color: var(--ribbon-search-button-icon-color, #ffffff);
            background: #c00;
            background: var(--ribbon-search-button-color, #cc0000);
          }

          @media all and (min-width: 600px) {
            .ribbon-search-desktop__submit {
              width: 64px;
            }
          }

          .ribbon-search-desktop__submit:hover {
            background: #a00000;
            background: var(--ribbon-search-button-hover-color, #a00000);
          }

          .ribbon-search-desktop__icon-search {
            width: 20px;
            height: 20px;
          }

          .ribbon-search-desktop__clear {
            display: none;
            position: absolute;
            right: 0;
            top: 0;
            padding-right: 8px;
            width: 32px;
            height: 100%;
            color: #ccc;
            color: var(--ribbon-search-clear-icon-color, #cccccc);
          }

          .ribbon-search-desktop__clear:hover {
            color: #000;
            color: var(--ribbon-search-clear-icon-hover-color, #000000);
          }

          .ribbon-search-desktop__clear--visible {
            display: block;
          }

          .ribbon-search-desktop__icon-cross {
            width: 16px;
            height: 16px;
          }

          .ribbon-search-desktop .szn-input-with-suggest-list {
            box-sizing: border-box;
            margin: 0;
            border-color: #ccc;
            border-color: var(--ribbon-search-border-color, #cccccc);
            border-radius: 4px 0 0 4px;
            border-style: solid;
            border-width: 1px;
            border-right: 0;
            padding: 0 40px 0 14px;
            min-height: 100%;
            flex-grow: 1;
            font-family:
              Trivia Seznam,
              Helvetica,
              Arial,
              sans-serif;
            font-size: 16px;
            line-height: normal;
            color: #222;
            color: var(--ribbon-search-font-color, #222222);
            background: #fff;
            background: var(--ribbon-search-background-color, #ffffff);
            -webkit-appearance: none;
            outline: none;
          }

          .ribbon-search-desktop .szn-input-with-suggest-list:hover {
            border-color: #666;
            border-color: var(--ribbon-search-border-hover-color, #666666);
          }

          .ribbon-search-desktop .szn-input-with-suggest-list::-ms-clear {
            display: none;
          }

          .ribbon-search-desktop .szn-input-with-suggest-list::placeholder {
            color: #757575;
            color: var(--ribbon-search-placeholder-color, #757575);
          }

          .ribbon-search-desktop .szn-suggest-list {
            font-family:
              Trivia Seznam,
              Helvetica,
              Arial,
              sans-serif;
          }

          .szn-mobile-input-with-suggest-list--light {
            --color-button-primary: var(--ribbon-search-button-color,
                #cc0000);
          }

          .szn-mobile-input-with-suggest-list__button--icon-back {
            box-sizing: content-box;
            padding: 0 10px;
            width: 20px;
          }

          .szn-mobile-input-with-suggest-list__button--icon-clear {
            box-sizing: content-box;
            padding: 0 22px;
            width: 12px;
          }

          .szn-mobile-input-with-suggest-list__button--icon-search {
            box-sizing: content-box;
            padding: 0 12px;
            width: 20px;
          }

          .szn-mobile-input-with-suggest-list__button--icon-back .ribbon-icon,
          .szn-mobile-input-with-suggest-list__button--icon-clear .ribbon-icon,
          .szn-mobile-input-with-suggest-list__button--icon-search .ribbon-icon {
            width: 100%;
            height: auto;
          }

          .szn-mobile-input-with-suggest-list__controlPanel__input-2,
          .szn-mobile-input-with-suggest-list__controlPanel__input-3 {
            width: auto;
            flex-grow: 1;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 18px;
          }

          .ribbon-mobile-search__input {
            display: none;
          }

          .ribbon-service {
            display: flex;
            height: 32px;
            flex-shrink: 1;
            align-items: center;
            font-size: 14px;
            color: #000;
            color: var(--ribbon-service-color, #000000);
            text-decoration: none;
          }

          .ribbon-service:hover {
            text-decoration: none;
          }

          .ribbon-service:hover,
          .ribbon-service:visited {
            color: #000;
            color: var(--ribbon-service-color, #000000);
          }

          .ribbon-service__icon {
            display: none;
            margin-right: 8px;
            width: 32px;
            height: 32px;
          }

          .ribbon-service__icon-label {
            display: none;
            white-space: nowrap;
          }

          .ribbon-service__logo {
            width: auto;
            max-width: 100%;
            height: 24px;
            min-height: 24px;
            max-height: 32px;
          }

          @media all and (min-width: 600px) {

            .ribbon-service__icon,
            .ribbon-service__icon-label {
              display: block;
              font-size: 16px;
            }

            .ribbon-service__icon~.ribbon-service__logo {
              display: none;
            }
          }

          .ribbon-service--sbr .ribbon-service__icon,
          .ribbon-service--sbr .ribbon-service__icon-label {
            display: block;
          }

          .ribbon-service--sbr .ribbon-service__logo {
            display: none;
          }

          .ribbon-seznam {
            display: flex;
            flex-shrink: 0;
            align-items: center;
            color: #c00;
            color: var(--ribbon-seznam-color, #cc0000);
          }

          .ribbon-seznam__link,
          .ribbon-seznam__link:hover,
          .ribbon-seznam__link:visited {
            color: #c00;
            color: var(--ribbon-seznam-color, #cc0000);
            text-decoration: none;
          }

          .ribbon {
            display: flex;
            position: fixed;
            left: 0;
            top: 0;
            z-index: 9000;
            box-sizing: border-box;
            padding: 0 16px;
            width: 100%;
            height: 56px;
            background: #fff;
            background: var(--ribbon-background-color, #ffffff);
            box-shadow:
              0 0 2px #0000001a,
              0 8px 30px -12px #0000001f;
          }

          .ribbon--base {
            font-family:
              Trivia Seznam,
              Helvetica,
              Arial,
              sans-serif;
            font-size: 14px;
          }

          .ribbon--blind {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(1px 1px 1px 1px);
            clip: rect(1px, 1px, 1px, 1px);
          }

          .ribbon--unfixed {
            position: absolute;
          }

          .ribbon--show-search .ribbon-seznam {
            visibility: hidden;
          }

          @media all and (min-width: 600px) {
            .ribbon--show-search .ribbon-seznam {
              visibility: visible;
            }
          }

          .ribbon__menu-button {
            margin-right: 8px;
            margin-left: -8px;
            color: #909090;
            color: var(--ribbon-menu-button-color, #909090);
          }

          .ribbon__menu-button .ribbon-button__button {
            box-sizing: content-box;
            border-radius: 4px;
            padding: 8px;
            width: 16px;
            height: 16px;
          }

          .ribbon__menu-button .ribbon-button__button:focus-visible {
            outline: 2px solid black;
          }

          .ribbon__start,
          .ribbon__center,
          .ribbon__end {
            display: flex;
            align-items: center;
          }

          .ribbon__center {
            min-width: 0;
            flex-grow: 1;
          }

          .ribbon__end {
            margin-left: 16px;
            flex-shrink: 0;
          }

          .ribbon__end--reversed {
            display: flex;
            flex-shrink: 0;
          }

          @media all and (min-width: 600px) {
            .ribbon:not(.ribbon--unfixed) {
              padding-right: 31px;
              width: 100vw;
            }

            .ribbon__end {
              margin-left: 0;
            }

            .ribbon__end--reversed {
              flex-direction: row-reverse;
            }

            .ribbon__center {
              margin: 0 16px;
            }
          }

          .ribbon__end .ribbon-seznam {
            margin-right: 16px;
          }

          .ribbon__menu-button .ribbon-icon {
            height: 12px;
          }

          .ribbon__menu-button .ribbon-button__button {
            position: relative;
          }

          .ribbon__menu-button .ribbon-button__button .ribbon-icon__menu,
          .ribbon__menu-button .ribbon-button__button .ribbon-icon__menu-cross {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
          }

          .ribbon__menu-button .ribbon-button__button .ribbon-icon__menu-cross {
            display: none !important;
            height: 12px;
            width: 12px;
            visibility: hidden;
            opacity: 0;
          }

          .ribbon__menu-button--open .ribbon-button__button .ribbon-icon__menu {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            width: 0 !important;
            height: 0 !important;
            overflow: hidden !important;
            position: absolute !important;
            clip: rect(0, 0, 0, 0) !important;
          }

          .ribbon__menu-button--open .ribbon-button__button .ribbon-icon__menu-cross {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
          }

          @media all and (min-width: 600px) {
            .ribbon .ribbon-seznam {
              margin-right: 0;
              margin-left: 16px;
            }
          }
          .ribbon {
            --ribbon-menu-primary-color: #a05d5d;
            --ribbon-search-button-color: #a05d5d;
            --ribbon-search-button-hover-color: #704141;
          }

          @media screen and (max-width: 599px) {
            .desk-header {
              display: none;
            }
          }

          @media screen and (min-width: 600px) {
            .mob-header {
              display: none;
            }
          }

          .ribbon_wrapper {
            position: relative;
          }

          .ribbon__menu-button--mobile {
            display: none;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            min-width: 44px;
            z-index: 10;
            margin: 0;
            align-items: center;
            justify-content: center;
            background: #fff;
          }

          .ribbon__menu-button--mobile .ribbon-button__button {
            background: transparent;
          }

          @media screen and (max-width: 599px) {
            .ribbon__menu-button--mobile {
              display: flex;
            }
          }
                    szn-login-menu {
                      color: var(--fg);
                    }

                    szn-login-menu a {
                      color: var(--link);
                      text-decoration: none;
                      transition: color 300ms;
                    }

                    szn-login-menu a:focus-visible {
                      outline: 2px solid #404040;
                    }

                    szn-login-menu a:visited {
                      color: var(--link);
                    }

                    szn-login-menu a:focus,
                    szn-login-menu a:hover {
                      color: var(--link-hover);
                      text-decoration: underline;
                    }

                    szn-login-menu #user,
                    szn-login-menu #users a {
                      white-space: nowrap;
                      display: flex;
                      max-width: 100%;
                    }

                    szn-login-menu #user p,
                    szn-login-menu #users a p {
                      margin: 0 0 0 12px;
                      overflow: hidden;
                      text-overflow: ellipsis;
                    }

                    szn-login-menu #user p strong,
                    szn-login-menu #users a p strong {
                      display: block;
                      font-size: 18px;
                      line-height: 24px;
                      margin-bottom: 2px;
                      overflow: hidden;
                      text-overflow: ellipsis;
                    }

                    szn-login-menu #user {
                      padding: 16px;
                    }

                    szn-login-menu [data-action="debug"] {
                      color: #fc6723;
                    }

                    szn-login-menu li:has(.warning) {
                      display: flex;
                      align-items: center;
                      justify-content: space-between;
                    }

                    szn-login-menu .hint {
                      margin: 2px 0 0 0;
                      color: #8795a2;
                      font-size: 12px;
                      line-height: 1.3;
                      font-style: italic;
                    }

                    szn-login-menu .warning {
                      display: flex;
                      align-items: center;
                      background-color: rgba(204, 0, 0, 0.1);
                      border-radius: 11px;
                      text-transform: uppercase;
                      padding: 0 8px 0 0;
                      font-size: 10px;
                      line-height: 20px;
                      font-weight: bold;
                      color: #c00;
                    }

                    szn-login-menu .warning .icon {
                      width: 16px;
                      height: 16px;
                      margin: 3px 8px 3px 3px;
                    }

                    szn-login-menu .icon-question {
                      display: inline-block;
                      vertical-align: middle;
                      width: 16px;
                      height: 16px;
                      margin-left: 4px;
                      color: rgba(1, 30, 57, 0.6);
                    }

                    szn-login-menu .logout-box {
                      flex-direction: column;
                      margin-top: 8px;
                      padding: 16px 12px;
                      border-radius: 12px;
                      background-color: #fff;
                      text-align: center;
                    }

                    szn-login-menu .logout-box:not([hidden]) {
                      display: flex;
                    }

                    szn-login-menu .logout-box p {
                      margin: 0;
                      padding: 0 30px;
                      line-height: 1.3;
                      font-weight: bold;
                    }

                    szn-login-menu .logout-box button {
                      margin-top: 12px;
                      font-size: 13px;
                      height: 37px;
                      border-radius: 8px;
                      font-weight: 700;
                      transition: all 300ms;
                    }

                    szn-login-menu .logout-box button[type="submit"] {
                      color: #fff;
                      background-color: #c00;
                    }

                    szn-login-menu .logout-box button[type="submit"]:hover {
                      background-color: #a70606;
                    }

                    szn-login-menu .logout-box button[type="button"] {
                      color: #c00;
                      border: 1px solid #c00;
                    }

                    szn-login-menu .logout-box button[type="button"]:hover {
                      background-color: rgba(204, 0, 0, 0.08);
                    }

                    szn-login-menu .logout-box a {
                      margin-top: 16px;
                      font-size: 13px;
                      color: #c00;
                    }

                    szn-avatar {
                      display: block;
                      position: relative;
                    }

                    szn-avatar .icon {
                      position: absolute;
                    }

                    szn-avatar img {
                      display: block;
                      border-radius: 50%;
                    }

                    szn-avatar img.fade {
                      opacity: 0.5;
                    }

                    szn-avatar .icon-lock {
                      right: -8px;
                      bottom: -8px;
                    }

                    szn-avatar .icon-premium {
                      left: -8px;
                      top: -8px;
                    }

                    szn-avatar .unread {
                      box-shadow: 0 0 0 1px #fff;
                    }

                    szn-avatar .unread[data-style="small"] {
                      color: transparent;
                      width: 8px;
                      height: 8px;
                      right: 0;
                      top: 0;
                    }

                    szn-avatar .unread[data-style="big"] {
                      width: 16px;
                      height: 16px;
                      right: -4px;
                      top: -4px;
                    }

                    button.stack {
                      position: relative;
                      padding: 8px;
                      border-radius: 4px;
                    }

                    button.stack[data-cut="number"] .unread {
                      left: calc(50% + 2px);
                      top: calc(50% - 18px);
                      width: 16px;
                      height: 16px;
                    }

                    button.stack[data-cut="dot"] .unread {
                      left: calc(50% + 2px);
                      top: calc(50% - 14px);
                      width: 8px;
                      height: 8px;
                      color: transparent;
                    }

                    button.stack .icon-email-cut-dot+.unread {
                      left: calc(50% + 9px);
                    }

                    button.stack .icon-bubble-cut-dot+.unread {
                      left: calc(50% + 8px);
                    }

                    button.stack+#badge {
                      margin-left: 8px;
                    }

                    szn-notifications {
                      padding: 12px 16px;
                    }

                    szn-notifications:not([hidden]) {
                      display: block;
                    }

                    szn-notifications>header {
                      display: flex;
                      margin-bottom: 12px;
                      justify-content: space-between;
                      align-items: center;
                    }

                    szn-notifications>header a {
                      color: var(--link);
                      text-decoration: none;
                      transition: color 300ms;
                    }

                    szn-notifications>header a:focus-visible {
                      outline: 2px solid #404040;
                    }

                    szn-notifications>header a:visited {
                      color: var(--link);
                    }

                    szn-notifications>header a:focus,
                    szn-notifications>header a:hover {
                      color: var(--link-hover);
                      text-decoration: underline;
                    }

                    szn-notifications h2 {
                      font-size: 18px;
                      line-height: 24px;
                      margin: 0;
                      padding: 0;
                    }

                    szn-notifications .onboarding {
                      display: flex;
                      flex-direction: column;
                      padding: 12px 0;
                      gap: 16px;
                    }

                    szn-notifications .onboarding img {
                      align-self: center;
                    }

                    szn-notifications .onboarding h2 {
                      font-size: 21px;
                      line-height: 28px;
                    }

                    szn-notifications .onboarding p {
                      margin: 0;
                      color: #6d6d6d;
                    }

                    szn-notifications .onboarding a {
                      margin: 0 24px;
                      display: flex;
                      height: 48px;
                      padding-top: 11px;
                      justify-content: center;
                      text-decoration: none;
                      border-radius: 4px;
                      color: #fff;
                      font-size: 16px;
                      font-weight: bold;
                      background-color: #c00;
                      box-shadow: 0 8px 24px -8px rgba(204, 0, 0, 0.4);
                      transition: background-color 300ms;
                    }

                    szn-notifications .onboarding a:focus-visible {
                      outline: 2px solid #404040;
                    }

                    szn-notifications .onboarding a:hover {
                      background-color: #900;
                    }

                    szn-notifications::before {
                      content: "";
                      opacity: 0;
                      transition: opacity 300ms 500ms;
                    }

                    szn-notifications.loading::before {
                      opacity: 1;
                      position: absolute;
                      top: 0;
                      width: 50%;
                      height: 4px;
                      background-color: #c00;
                      animation: loading 2s infinite ease-in-out alternate;
                    }

                    @keyframes loading {
                      0% {
                        left: 0;
                      }

                      100% {
                        left: 50%;
                      }
                    }

                    szn-notification {
                      background-color: var(--notification-bg);
                      border-radius: 4px;
                      box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
                      --line-clamp: 2;
                    }

                    szn-notification:not([hidden]) {
                      display: block;
                    }

                    szn-notification.clickable:not(.clicked) {
                      box-shadow:
                        0 0 1px rgba(0, 0, 0, 0.2),
                        0 1px 4px rgba(0, 0, 0, 0.2),
                        0 16px 24px -16px rgba(0, 0, 0, 0.3);
                    }

                    szn-notification.clickable.clicked {
                      background-color: transparent;
                    }

                    szn-notification.clickable.clicked h3 {
                      font-weight: normal;
                    }

                    szn-notification:not(.clickable) {
                      padding: 12px;
                    }

                    szn-notification+szn-notification {
                      margin-top: 16px;
                    }

                    szn-notification .blind {
                      position: absolute;
                      overflow: hidden;
                      width: 0;
                    }

                    szn-notification>a {
                      display: block;
                      color: inherit;
                      text-decoration: none;
                      padding: 12px;
                      border-radius: 4px;
                    }

                    szn-notification>a:focus-visible {
                      outline: 2px solid #404040;
                    }

                    szn-notification h3,
                    szn-notification p {
                      overflow: hidden;
                      text-overflow: ellipsis;
                      margin: 0;
                    }

                    szn-notification header,
                    szn-notification footer {
                      display: flex;
                      align-items: center;
                    }

                    szn-notification header {
                      margin-bottom: 8px;
                    }

                    szn-notification header .logo {
                      width: 32px;
                      height: 32px;
                      margin-right: 8px;
                      flex: none;
                      position: relative;
                    }

                    szn-notification header .mid {
                      overflow: hidden;
                      flex: auto;
                    }

                    szn-notification header .close {
                      padding: 0;
                      margin-left: auto;
                      align-self: flex-start;
                    }

                    szn-notification footer {
                      margin-top: 8px;
                    }

                    szn-notification h3 {
                      font: inherit;
                      line-height: inherit;
                    }

                    szn-notification p.subject {
                      white-space: nowrap;
                      margin-bottom: 4px;
                    }

                    szn-notification p.content {
                      color: #808080;
                      display: -webkit-box;
                      -webkit-box-orient: vertical;
                      line-clamp: var(--line-clamp);
                      -webkit-line-clamp: var(--line-clamp);
                    }

                    szn-notification[data-type="generic"] header .logo img,
                    szn-notification[data-type="zbozi-stars"] header .logo img,
                    szn-notification[data-type="zbozi-rating"] header .logo img {
                      max-width: 48px;
                      position: absolute;
                      left: 50%;
                      top: 50%;
                      transform: translate(-50%, -50%);
                    }

                    szn-notification[data-type="generic"] h3,
                    szn-notification[data-type="zbozi-stars"] h3,
                    szn-notification[data-type="zbozi-rating"] h3 {
                      white-space: nowrap;
                    }

                    szn-notification[data-type="generic"] .created,
                    szn-notification[data-type="zbozi-stars"] .created,
                    szn-notification[data-type="zbozi-rating"] .created {
                      font-size: 12px;
                      line-height: 20px;
                      color: #808080;
                    }

                    szn-notification[data-type="zbozi-stars"],
                    szn-notification[data-type="zbozi-rating"] {
                      padding: 12px;
                    }

                    szn-notification[data-type="zbozi-rating"] .rating {
                      margin-top: 16px;
                      display: flex;
                    }

                    szn-notification[data-type="zbozi-rating"] .rating a {
                      color: #000;
                      flex: 1 0 0;
                      padding: 16px 0 12px 0;
                      display: flex;
                      flex-direction: column;
                      align-items: center;
                      border-radius: 12px;
                      border: 2px solid #f0f0f0;
                      background-color: #f0f0f0;
                      font-size: 13px;
                      line-height: 16px;
                      text-decoration: none;
                    }

                    szn-notification[data-type="zbozi-rating"] .rating a:hover {
                      border-color: currentColor;
                      background-color: transparent;
                      font-weight: bold;
                    }

                    szn-notification[data-type="zbozi-rating"] .rating a+a {
                      margin-left: 8px;
                    }

                    szn-notification[data-type="zbozi-rating"] .rating a .icon {
                      width: 24px;
                      margin-bottom: 12px;
                    }

                    szn-notification[data-type="zbozi-stars"]>a {
                      position: relative;
                      background-color: var(--notification-bg);
                      padding: 8px;
                      margin: 8px;
                      border-radius: 16px;
                    }

                    szn-notification[data-type="zbozi-stars"]>a img {
                      display: block;
                      margin: auto;
                      max-width: 100%;
                    }

                    szn-notification[data-type="zbozi-stars"]>a::after {
                      content: "";
                      position: absolute;
                      left: 0;
                      right: 0;
                      top: 0;
                      bottom: 0;
                      background-color: rgba(1, 30, 57, 0.04);
                      border-radius: 16px;
                    }

                    szn-notification[data-type="zbozi-stars"] .stars {
                      margin: 4px auto 0 auto;
                      display: flex;
                      width: 192px;
                      justify-content: space-between;
                    }

                    szn-notification[data-type="zbozi-stars"] .stars a:not(.active) .icon-star-filled {
                      display: none;
                    }

                    szn-notification[data-type="zbozi-stars"] .stars a.active .icon-star-empty {
                      display: none;
                    }

                    szn-notification[data-type="zbozi-stars"] .stars .icon {
                      width: 32px;
                      display: block;
                    }

                    szn-notification[data-type="reactions"] {
                      --line-clamp: 3;
                    }

                    szn-notification[data-type="reactions"] .logo img {
                      border-radius: 50%;
                      position: absolute;
                    }

                    szn-notification[data-type="reactions"] .logo img:only-child {
                      left: 0;
                      top: 0;
                    }

                    szn-notification[data-type="reactions"] .logo img:not(:only-child) {
                      border: 2px solid #fff;
                    }

                    szn-notification[data-type="reactions"] .logo img:not(:only-child):nth-child(1) {
                      right: -3px;
                      top: -3px;
                    }

                    szn-notification[data-type="reactions"] .logo img:not(:only-child):nth-child(2) {
                      left: -3px;
                      bottom: -3px;
                    }

                    szn-notification[data-type="reactions"] footer {
                      position: relative;
                      padding-left: 24px;
                    }

                    szn-notification[data-type="reactions"] footer img {
                      width: 24px;
                      height: 24px;
                      position: absolute;
                      left: -4px;
                      bottom: -1px;
                    }

                    szn-notification[data-type="reactions"] footer span {
                      flex: auto;
                      max-width: 20px;
                      color: rgb(150 150 150 / 20%);
                    }

                    szn-notification[data-type="reactions"] footer span::before {
                      content: "•";
                    }

                    szn-notification.new[data-type="generic"] .created::after {
                      content: "";
                      display: inline-block;
                      vertical-align: middle;
                      width: 6px;
                      height: 6px;
                      border-radius: 50%;
                      background-color: #c00;
                      margin-left: 8px;
                      margin-bottom: 2px;
                    }

                    szn-notification.new[data-type="reactions"] h3::before {
                      content: "";
                      display: inline-block;
                      vertical-align: middle;
                      width: 8px;
                      height: 8px;
                      border-radius: 50%;
                      background-color: #c00;
                      margin-right: 8px;
                    }

                    button.mess {
                      position: relative;
                      padding: 8px;
                      border-radius: 4px;
                    }

                    /* button.mess[data-cut=number] .unread{left:calc(50% + 1px);top:calc(50% - 17px);width:16px;height:16px} */
                    button.mess[data-cut="dot"] .unread {
                      left: calc(50% + 7px);
                      top: calc(50% - 14px);
                      width: 8px;
                      height: 8px;
                      color: transparent;
                    }

                    /* m-app{z-index:var(--popup-z-index);position:fixed;right:32px} */
                    /* *{box-sizing:border-box} */
                    /* :host{display:inline-block;position:relative;font-size:14px;line-height:22px} */
                    button {
                      border: none;
                      background: transparent;
                      cursor: pointer;
                      font: inherit;
                      position: relative;
                      transition: color 300ms;
                      color: #c0c0c0;
                    }

                    button:focus-visible {
                      outline: 2px solid #404040;
                    }

                    button:hover,
                    button[aria-expanded="true"],
                    button.active {
                      color: var(--icon-hover);
                    }

                    #buttons {
                      display: flex;
                      align-items: center;
                    }

                    #buttons #stacks {
                      margin-right: 8px;
                      gap: 8px;
                    }

                    #buttons #stacks:not([hidden]) {
                      display: flex;
                    }

                    .popup {
                      position: absolute;
                      top: 48px;
                      z-index: var(--popup-z-index);
                    }

                    .popup:not([hidden]) {
                      animation: appear 300ms ease;
                    }

                    /* #popup{width:320px;background-color:var(--bg);border-radius:4px;box-shadow:0 0 1px 0 rgba(0,0,0,0.2),0 1px 4px 0 rgba(0,0,0,0.2),0 16px 24px -16px rgba(0,0,0,0.3);overflow:auto;max-height:75vh;overscroll-behavior:contain} */
                    @media (max-width: 415px) {
                      #popup {
                        width: 100vw;
                        border-radius: 0;
                      }
                    }

                    #tabs {
                      border-bottom: 1px solid rgb(150 150 150 / 20%);
                    }

                    #tabs:not([hidden]) {
                      display: flex;
                    }

                    #tabs button:not([hidden]) {
                      flex: 1 0 0;
                      height: 56px;
                      display: flex;
                      align-items: center;
                      justify-content: center;
                    }

                    #tabs button:not([hidden])+button {
                      border-left: 1px solid rgb(150 150 150 / 20%);
                    }

                    ul {
                      list-style: none;
                      border-top: 1px solid rgb(150 150 150 / 20%);
                      margin: 0;
                      padding: 0;
                    }

                    ul:empty {
                      display: none;
                    }

                    /* ul li{padding:6px 16px}
                     ul li:first-child{padding-top:12px}
                     ul li:last-child{padding-bottom:12px} */
                    .icon {
                      width: 24px;
                      height: 24px;
                      display: block;
                    }

                    .icon path:not([fill]),
                    .icon polygon:not([fill]),
                    .icon circle:not([fill]) {
                      fill: currentColor;
                    }

                    .unread {
                      position: absolute;
                      border-radius: 50%;
                      font-weight: bold;
                      font-size: 11px;
                      line-height: 16px;
                      background-color: #c00;
                      color: #fff;
                    }

                    #login {
                      color: var(--link);
                      text-decoration: none;
                      transition: color 300ms;
                      color: var(--link-hover);
                      border-radius: 4px;
                      line-height: 40px;
                    }

                    #login:focus-visible {
                      outline: 2px solid #404040;
                    }

                    #login:visited {
                      color: var(--link);
                    }

                    #login:focus,
                    #login:hover {
                      color: var(--link-hover);
                      text-decoration: underline;
                    }

                    #badge {
                      border-radius: 50%;
                      padding: 0;
                    }

                    #badge .icon-warning {
                      position: absolute;
                      right: -8px;
                      bottom: -8px;
                    }

                    @keyframes appear {
                      0% {
                        max-height: 0;
                        opacity: 0;
                      }

                      100% {
                        max-height: 75vh;
                        opacity: 1;
                      }
                    }

                    /*=============COMMENTS==============*/
                    .comments {
                      padding-top: 5rem;
                      max-width: 790px;
                      margin: 0 auto;
                      padding-inline: 1rem;
                      padding-bottom: 6rem;
                    }

                    .comments__list .comments__item:last-child {
                      border-bottom: 1px solid var(--border-color);
                    }

                    .comments__item-answer {
                      border-bottom: 0 !important;
                    }

                    .comments__item {
                      display: flex;
                      align-items: start;
                      column-gap: 0.9rem;
                      font-size: 0.925rem;
                      line-height: 1.65;
                      border-top: 1px solid #e0e1e2;
                      padding-top: 0.25rem;
                      padding-bottom: 0rem;
                    }

                    .comments__item-answer {
                      margin-top: 1.25rem;
                    }

                    .comments__item-image {
                      flex-shrink: 0;
                    }

                    .comments__item-image img {
                      width: 46px;
                      height: 46px;
                      border-radius: 50%;
                      object-fit: cover;
                    }

                    .comments__item-body-top {
                      display: flex;
                      align-items: center;
                      justify-content: space-between;
                      column-gap: 1rem;
                    }

                    .comments__item-info {
                      display: flex;
                      align-items: center;
                      flex-wrap: wrap;
                      column-gap: 0.85rem;
                    }

                    .comments__item-body {
                      flex-grow: 1;
                    }

                    .comments__item-name {
                      font-weight: 700;
                      color: var(--primary);
                      letter-spacing: 0.5px;
                    }

                    .comments__item-date {
                      color: var(--color-gray);
                      font-size: 0.85rem;
                    }

                    .comments__item-rating {
                      display: flex;
                      align-items: center;
                      column-gap: 0.5rem;
                      font-size: 0.85rem;
                    }

                    .comments__item-rating-button {
                      width: 1.25rem;
                      height: 1.25rem;
                      padding: 0.3rem;
                      flex-shrink: 0;
                      background-color: rgba(98, 98, 98, 0.216);
                      display: flex;
                      align-items: center;
                      justify-content: center;
                      border-radius: 100%;
                    }

                    .comments__item-rating-button svg {
                      width: 100%;
                      height: 100%;
                    }

                    .comments__item-body-top {
                      margin-bottom: 0.35rem;
                    }

                    .comments__item-body-bottom {
                      margin-top: 1rem;
                      text-align: end;
                      color: var(--color-gray);
                      font-size: 0.85rem;
                    }

                    .comments__more {
                      padding-top: 2rem;
                      text-align: center;
                      font-size: 1.15rem;
                      color: var(--primary);
                    }

                    /* ===== NEW COMMENTS STYLES ===== */
                    .comments-list {
                      display: flex;
                      flex-direction: column;
                      gap: 0;
                      max-width: 790px;
                      margin: 0 auto;
                      padding: 0 1rem;
                    }

                    .comment-item {
                      padding: 20px 0;
                      border-top: 1px solid #e0e1e2;
                    }

                    .comment-item:first-child {
                      border-top: none;
                      padding-top: 0;
                    }

                    .comment-top {
                      display: flex;
                      align-items: center;
                      gap: 12px;
                      margin-bottom: 10px;
                    }

                    .comment-avatar {
                      width: 40px;
                      height: 40px;
                      border-radius: 50%;
                      flex-shrink: 0;
                      overflow: hidden;
                      background: #e8e8ec;
                      display: flex;
                      align-items: center;
                      justify-content: center;
                    }

                    .comment-avatar.blue {
                      background: #dce8f5;
                      color: #1a73e8;
                    }

                    .comment-avatar.green {
                      background: #daf0e0;
                      color: #2e8b57;
                    }

                    .comment-avatar.orange {
                      background: #fde8d8;
                      color: #d97706;
                    }

                    .comment-avatar.purple {
                      background: #e8dff5;
                      color: #7c3aed;
                    }

                    .comment-avatar.red {
                      background: #fde2e2;
                      color: #cc0000;
                    }

                    .comment-avatar span {
                      font-size: 14px;
                      font-weight: 700;
                    }

                    .comment-author {
                      font-size: 14px;
                      font-weight: 700;
                      color: #1a1a1a;
                    }

                    .comment-date {
                      font-size: 13px;
                      color: #888;
                      margin-left: auto;
                    }

                    .comment-text {
                      font-size: 15px;
                      line-height: 1.6;
                      color: #333;
                      margin-bottom: 12px;
                      padding-left: 52px;
                    }

                    .comment-text a.link {
                      color: #1a73e8;
                      text-decoration: none;
                    }

                    .comment-text a.link:hover {
                      text-decoration: underline;
                    }

                    .comment-actions {
                      display: flex;
                      align-items: center;
                      gap: 16px;
                      padding-left: 52px;
                    }

                    .comment-action-btn {
                      display: inline-flex;
                      align-items: center;
                      gap: 5px;
                      font-size: 13px;
                      color: #888;
                      background: none;
                      border: none;
                      cursor: pointer;
                      font-family: inherit;
                      padding: 4px 0;
                      transition: color 0.15s;
                    }

                    .comment-action-btn:hover {
                      color: #1a1a1a;
                    }

                    .comment-action-btn svg {
                      width: 18px;
                      height: 18px;
                      stroke: currentColor;
                      stroke-width: 1.8;
                      fill: none;
                    }

                    .comment-action-btn .count {
                      font-weight: 600;
                      color: #cc0000;
                    }

                    .comment-reply-btn {
                      font-size: 13px;
                      color: #1a73e8;
                      background: none;
                      border: none;
                      cursor: pointer;
                      font-family: inherit;
                      font-weight: 600;
                      padding: 4px 0;
                    }

                    .comment-reply-btn:hover {
                      text-decoration: underline;
                    }

                    /* Reply (nested comment) */
                    .comment-reply {
                      margin-left: 52px;
                      padding: 16px 0 0;
                      border-left: 2px solid #e8e8ec;
                      padding-left: 16px;
                    }

                    .comment-reply .comment-item {
                      border-top: none;
                      padding-top: 12px;
                    }

                    .comment-reply .comment-text,
                    .comment-reply .comment-actions {
                      padding-left: 52px;
                    }

                    .comments-load-more {
                      display: flex;
                      justify-content: center;
                      margin-top: 24px;
                      padding-bottom: 40px;
                    }

                    .btn-load-more {
                      display: inline-flex;
                      align-items: center;
                      gap: 8px;
                      background: none;
                      border: 2px solid #e0e1e2;
                      border-radius: 8px;
                      padding: 12px 32px;
                      font-family: inherit;
                      font-size: 14px;
                      font-weight: 600;
                      color: #1a1a1a;
                      cursor: pointer;
                      transition: all 0.2s;
                    }

                    .btn-load-more:hover {
                      border-color: #1a1a1a;
                      background: #f5f5f5;
                    }

                    .btn-load-more svg {
                      width: 16px;
                      height: 16px;
                      stroke: currentColor;
                      stroke-width: 2;
                      fill: none;
                    }

                    @media (max-width: 768px) {

                      .comment-text,
                      .comment-actions {
                        padding-left: 0;
                      }

                      .comment-reply {
                        margin-left: 20px;
                      }

                      .comment-reply .comment-text,
                      .comment-reply .comment-actions {
                        padding-left: 0;
                      }

                      .comment-avatar {
                        width: 36px;
                        height: 36px;
                      }

                      .comment-avatar span {
                        font-size: 12px;
                      }
                    }
                            /*zmenšení mezer mezi položkami - začátek*/
                            ._608bd369996d46f9aa270870 .c_iJ .e_k {
                              padding: 0 0.8rem;
                            }

                            ._608bd369996d46f9aa270870 .c_iJ:first-child .e_k {
                              padding-left: 0;
                            }

                            ._608bd369996d46f9aa270870 .c_iJ:last-child .e_k {
                              padding-right: 0;
                            }

                            /*zmenšení mezer mezi položkami - konec*/
                            ._608bd369996d46f9aa270870 .c_iH {
                              margin-bottom: 0px;
                            }

                            @media (max-width: 1045px) {
                              ._608bd369996d46f9aa270870 .c_iP .c_iJ:nth-child(7) {
                                display: none;
                              }
                            }

                            @media (max-width: 940px) {
                              ._608bd369996d46f9aa270870 .c_iP .c_iJ:nth-child(6) {
                                display: none;
                              }
                            }

                            @media (max-width: 830px) {
                              ._608bd369996d46f9aa270870 .c_iP .c_iJ:nth-child(5) {
                                display: none;
                              }
                            }

                            @media (max-width: 680px) {
                              ._608bd369996d46f9aa270870 .c_iP .c_iJ:nth-child(4) {
                                display: none;
                              }
                            }
                                    ._608bd6b73316103f15d31ccc .g_eY .d_n {
                                      border: 1px solid #e0baba;
                                    }

                                    ._608bd6b73316103f15d31ccc .g_fK {
                                      border: 1px solid #e0baba;
                                    }

                                    ._608bd6b73316103f15d31ccc .e_bQ .e_K {
                                      background-color: transparent;
                                    }

                                    ._608bd6b73316103f15d31ccc .g_bM .e_L {
                                      background-color: transparent;
                                    }

                                    ._608bd6b73316103f15d31ccc .g_e8 {
                                      padding-left: 16px;
                                      padding-right: 16px;
                                    }

                                    @media (min-width: 540px) {
                                      ._608bd6b73316103f15d31ccc .g_e8 {
                                        padding-left: 0;
                                        padding-right: 0;
                                      }
                                    }

                                    ._608bd6b73316103f15d31ccc .mol-facebook-post-placeholder {
                                      background-color: white;
                                    }

                                    /* TABULKY - začátek */
                                    /* nadřazený div obsahující tabulku */
                                    ._608bd6b73316103f15d31ccc .g_c8 {
                                      margin-bottom: 1rem;
                                    }

                                    ._608bd6b73316103f15d31ccc .g_c9 {
                                      border-bottom: 1px solid #f0c8c8;
                                      font-size: 0.875rem;
                                    }

                                    /* buňka tabulky */
                                    ._608bd6b73316103f15d31ccc .g_fh {
                                      padding: 0.5rem 0.5rem;
                                    }

                                    /* barvy řádků tabulky */
                                    ._608bd6b73316103f15d31ccc .g_fj {
                                      background-color: #fff5f5;
                                    }

                                    ._608bd6b73316103f15d31ccc .mol-table__cell--predefined-style-2 {
                                      background-color: #fcecec;
                                    }

                                    ._608bd6b73316103f15d31ccc .g_fl {
                                      background-color: #e7e5f0;
                                    }

                                    @media screen and (max-width: 540px) {
                                      ._608bd6b73316103f15d31ccc .g_c9 {
                                        font-size: 0.75rem;
                                      }

                                      ._608bd6b73316103f15d31ccc .g_fh {
                                        padding: 0.375rem 0.375rem;
                                      }
                                    }

                                    /* TABULKY - konec */
                                    /* KVÍZY - oprava okrajů */
                                    ._608bd6b73316103f15d31ccc .g_e8 {
                                      padding-left: 1rem;
                                      padding-right: 1rem;
                                    }

                                    @media (min-width: 540px) {
                                      ._608bd6b73316103f15d31ccc .g_e8 {
                                        padding-left: 0;
                                        padding-right: 0;
                                      }
                                    }

                                    /* KVÍZY - oprava okrajů - konec */
                                    ._608bd6b73316103f15d31ccc .mol-banner__caption {
                                      display: none;
                                    }
                                              .img-responsive {
                                                width: 100%;
                                              }
                                                  .reg__list {
                                                    max-width: 100%;
                                                    list-style-type: none;
                                                    counter-reset: list;
                                                    display: flex;
                                                    flex-direction: column;
                                                    gap: 10px;
                                                    font:
                                                      400 18px / 26px Baufra,
                                                      sans-serif;
                                                  }

                                                  .reg__item {
                                                    background: #ffe2e2;
                                                    border-radius: 10px;
                                                    padding: 5px 10px;
                                                    border-left: 2px solid #d01717;
                                                    border-right: 2px solid #d01717;
                                                    display: flex;
                                                    align-items: center;
                                                    gap: 10px;
                                                  }

                                                  .reg__item::before {
                                                    counter-increment: list;
                                                    content: counter(list);
                                                    color: #d01717;
                                                    border: 1px solid #d01717;
                                                    border-radius: 50%;
                                                    display: flex;
                                                    align-items: center;
                                                    justify-content: center;
                                                    flex-shrink: 0;
                                                    -webkit-flex-shrink: 0;
                                                    width: 35px;
                                                    height: 35px;
                                                    aspect-ratio: 1 / 1;
                                                  }
                              ._608bda591f6bec0a182319f3 {
                                display: flex;
                                height: 100%;
                              }

                              .e_bm {
                                margin-top: 1rem;
                                margin-bottom: 1rem;
                              }