@charset "UTF-8";
@import url("https://use.typekit.net/fdr7ifc.css");
html {
  font-size: 16px;
}
html, body {
  height: 100%;
  overflow-x: hidden;
}
body {
  min-width: 320px;
  margin: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-image: url("/img/new/bg-animace-svetla.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
input, select, textarea, button, .button {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: inherit;
  /* Optional: Ensure font size is consistent with parent */
  font-weight: inherit;
  /* Optional: Keep font weight consistent */
}
.app-background {
  position: fixed;
  /* Keep it fixed so it remains as the background while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/new/assets/light.svg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  /* Ensures the background stays behind the content */
  pointer-events: none;
}
.app-content {
  position: relative;
  z-index: 1;
  /* Ensures content appears above the background */
}
.telly-navbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
}
.telly-navbar .flex-container {
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.telly-navbar .flex-container.scrolled {
  background-color: white;
}
h1, h2, h3, p {
  text-align: center;
}
a {
  font-weight: 600;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}
a.in-text {
  color: black !important;
}
a.has-decoration {
  text-decoration: underline;
}
.button {
  padding: 0.7rem 2rem;
  border: solid 1px #1e1ec8;
  background-color: transparent;
  color: #1e1ec8;
  border-radius: 0.7rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  cursor: pointer;
  transition: background-color 0.3s, opacity 0.3s;
  align-self: flex-start;
  text-align: center;
  font-weight: 600;
  box-sizing: border-box;
}
.button:hover {
  opacity: 0.7;
}
.button:disabled {
  cursor: not-allowed;
  border-color: #737373;
  color: #737373;
  opacity: 0.5;
  background-color: transparent;
  pointer-events: none;
}
.button:disabled:hover {
  opacity: 1;
}
.button-primary {
  color: #fff;
  background-color: #1e1ec8;
}
.button-primary:disabled {
  border: 1px solid #1e1ec8;
  background-color: #1e1ec8;
  color: white !important;
  opacity: 0.5;
}
.button-text {
  color: unset;
  border: unset;
  background-color: transparent;
}
.password-toggle-button {
  position: absolute;
  right: 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e1ec8;
}
@keyframes flashDisappear {
  0% {
    opacity: 1;
  }
  100% {
    z-index: -1;
    display: none;
    opacity: 0;
  }
}
.message-box {
  animation-name: flashDisappear;
  animation-duration: 2s;
  animation-delay: 5s;
  animation-fill-mode: forwards;
  position: relative;
  padding: 1rem 80px 1rem 25px;
  border-radius: 0.625rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
  height: auto;
  transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease;
  background-image: url("/img/new/icons/close-message-box.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;
  border-right: solid 15px;
  margin-bottom: 0.7rem;
}
.message-box:hover {
  opacity: 0.8;
}
.message-box--danger {
  background-color: #e80052;
  color: #fff;
  border-color: #e80052;
}
.message-box--warning {
  background-color: #ec7e00;
  color: #fff;
  border-color: #ec7e00;
}
.message-box--info {
  background-color: #0094f6;
  color: #fff;
  border-color: #0094f6;
}
.message-box--success {
  background-color: #15b9ab;
  color: #fff;
  border-color: #15b9ab;
}
.message-box.hidden {
  opacity: 0;
  transform: translateY(-10px);
  height: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}
.message-box__text {
  flex-grow: 1;
}
.message-box__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}
.message-box__close img {
  width: 1rem;
  height: 1rem;
}
.message-box__close:hover {
  opacity: 0.8;
}
.message-box__close:focus {
  outline: none;
}
.flashes {
  position: absolute;
  z-index: 1000;
  left: 150px;
  right: 150px;
  top: 1rem;
}
.flashes .panel {
  border-radius: 0.625rem;
  margin-bottom: 0.5rem;
  color: #fff;
  animation-name: flashDisappear;
  animation-duration: 2s;
  animation-delay: 5s;
  animation-fill-mode: forwards;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.flashes .panel-danger {
  border: 10px solid #ff4d4d;
  background-color: #ff4d4d;
}
.flashes .panel-info {
  border: 10px solid #0096fa;
  background-color: #0096fa;
}
.flashes .panel-success {
  border: 10px solid #00c8a0;
  background-color: #00c8a0;
}
.flashes .panel-warning {
  border: 10px solid #FFD200;
  background-color: #FFD200;
}
.icon-visibility {
  padding-top: 4px !important;
}
.menu.no-blink {
  display: none;
}
.toggle-container-header, .toggle-container-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.toggle-container-header .toggle-inner, .toggle-container-footer .toggle-inner {
  display: flex;
  align-items: center;
  border-bottom: solid 3px #1e1ec8;
}
.toggle-container-header .toggle-inner-footer, .toggle-container-footer .toggle-inner-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.toggle-container-header .toggle-text, .toggle-container-footer .toggle-text {
  margin-right: 0.7rem;
}
.toggle-container-header .toggle-icon, .toggle-container-footer .toggle-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}
.toggle-container-header {
  padding: 0.7rem 1.5rem;
  color: #1e1ec8;
}
.toggle-container-header .toggle-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
}
.toggle-container-header .toggle-icon {
  font-size: 16px;
  background-image: url("/img/new/icons/arrow-down.svg");
}
.toggle-container-footer {
  flex-direction: column;
  padding: 0.4375rem 1.5rem;
  color: #000;
}
.toggle-container-footer .toggle-icon {
  font-size: 16px;
  margin-right: 0.7rem;
  background-image: url("/img/new/icons/arrow-up.svg");
}
.toggle-container-footer .toggle-text {
  font-size: clamp(0.6875rem, 1vw, 0.8em);
  font-weight: 500;
}
.sport-event-banerik {
  color: #fff;
  background-color: #ff005a;
  border-radius: 0.625rem;
}
@media (min-width: 522px) {
  .sport-event-banerik {
    border: 10px solid #ff005a;
  }
}
.sport-event-banerik__header {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .sport-event-banerik__header {
    flex-direction: row;
  }
}
.sport-event-banerik__header span {
  margin: 0 0.4375rem;
}
.sport-event-banerik__title {
  font-weight: 700;
}
.sport-event-banerik__value {
  font-weight: 400;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden;
}
.modal-window {
  background-color: #fff;
  border-radius: 0.625rem;
  border: solid 2px #1e1ec8;
  width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.modal-close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 24px;
}
@media (min-width: 768px) {
  .modal-close-button {
    top: 14px;
    right: 16px;
  }
}
.modal-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  padding-bottom: 3rem;
  box-sizing: border-box;
  width: 100%;
  height: auto;
}
.modal-content::-webkit-scrollbar {
  width: 8px;
}
.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: #1e1ec8;
  border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #17179c;
}
.modal-content__title {
  color: #1e1ec8;
  font-size: clamp(1.5rem, 3vw, 1.625rem);
  font-weight: 700;
}
.modal-content__subtitle {
  color: #000000;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  padding-bottom: 1.5rem;
}
.modal-content__programes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-gap: 2.5rem;
  width: 100%;
  justify-items: center;
  align-items: center;
  margin: 40px 0;
}
.modal-content__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.7rem;
  column-gap: 0.7rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .modal-content__actions {
    flex-direction: row;
    align-items: center;
  }
}
.modal-content__actions .button {
  width: 70%;
  align-self: unset !important;
}
@media (min-width: 768px) {
  .modal-content__actions .button {
    width: auto;
  }
}
.modal-content {
  scrollbar-color: #1e1ec8 #f1f1f1;
  scrollbar-width: thin;
}
@media (min-width: 768px) {
  .modal-overlay {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .modal-window {
    margin: 40px auto;
    width: 90%;
    max-width: 1049px;
  }
  .modal-window.modal-window-voucher {
    margin: 40px auto;
    width: 80%;
    max-width: 900px;
  }
}
.modal-content hr {
  border: solid 0.5px #1e1ec8;
  height: 0px;
  background-color: #1e1ec8;
  width: 100%;
  align-self: center;
}
.modal-content input {
  grid-area: input;
  padding: 1rem 1.5rem;
  border: 0px solid #000000;
  border-radius: 0.7rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  background-color: #D9D9D933;
  align-self: center;
  text-align: center;
  color: #1E1EC8;
  font-weight: 600;
}
.modal-window.modal-window-working {
  flex-direction: row;
  width: 500px;
}
.modal-window.modal-window-working .modal-window-working-image {
  padding: 1.5rem;
  width: 150px;
  height: 150px;
  /*background-image: url('/img/new/icons/arrow-down.svg');*/
}
.modal-window.modal-window-question {
  flex-direction: row;
  width: 500px;
  margin: auto auto;
}
@keyframes ldio-x2uulkbinbj {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ldio-x2uulkbinbj div {
  left: 70.5px;
  top: 36px;
  position: absolute;
  animation: ldio-x2uulkbinbj linear 1s infinite;
  background: #000000;
  width: 9px;
  height: 18px;
  border-radius: 4.5px / 9px;
  transform-origin: 4.5px 39px;
}
.ldio-x2uulkbinbj div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.9166666667s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -0.8333333333s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.75s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.6666666667s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.5833333333s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.5s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.4166666667s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.3333333333s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.25s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.1666666667s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.0833333333s;
  background: #000000;
}
.ldio-x2uulkbinbj div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
  background: #000000;
}
.loadingio-spinner-spinner-nq4q5u6dq7r {
  width: 150px;
  height: 150px;
  display: inline-block;
  overflow: hidden;
  background: none;
}
.ldio-x2uulkbinbj {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}
.ldio-x2uulkbinbj div {
  box-sizing: content-box;
}
/* [ldio] generated by https://loading.io */
.subscription__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.875rem;
  align-items: center;
}
.subscription__actions > * {
  width: auto;
}
.subscription__actions > :nth-child(n) {
  margin: auto;
  width: 60%;
}
@media (min-width: 768px) {
  .subscription__actions > :nth-child(n) {
    margin: unset;
    width: unset;
  }
}
@media (min-width: 768px) {
  .subscription__actions {
    flex-direction: row;
    column-gap: 0.875rem;
    justify-content: center;
  }
}
.horizontal-line-subscription {
  display: block;
  margin: 2rem auto 1.5rem;
  height: 1px;
  background-color: #1E1EC8;
  min-width: 320px;
  max-width: 530px;
}
.subscription-info-text {
  text-align: center !important;
}
.subscription-info-text > a {
  color: #1e1ec8 !important;
}
@media (max-width: 522px) {
  .flashes {
    left: 0px;
    right: 0px;
  }
}
.text-blue-markup {
  text-transform: uppercase;
  color: #1e1ec8;
  font-weight: 700;
}
.tooltip-wrapper {
  position: relative;
  width: 0;
  display: inline-block;
}
.tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  /* umiestni tooltip nad obrázok */
  left: 50%;
  margin-left: -100px;
  /* centeruj tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}
.register-page__actions:hover > button[disabled] > .tooltip-wrapper > .tooltip-text {
  visibility: visible;
  opacity: 1;
  transition: none;
}
button > .tooltip-wrapper > .tooltip-text {
  top: -10px;
  left: 10px;
  bottom: initial;
  margin-left: 0;
  font-size: 15px;
  width: 350px;
  height: 50px;
  text-align: left;
}
.modal-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 80%);
  pointer-events: none;
}
.modal-content.gradient-hidden::after {
  display: none;
}
