@font-face {
  font-family: 'Narkiss';
  src: url('./NarkissBlockRESHET-Medium.woff') format('woff'), url('./NarkissBlockRESHET-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Narkiss';
  src: url('./NarkissBlockRESHET-Bold.woff') format('woff'), url('./NarkissBlockRESHET-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html,
body {
  margin: 0;
  direction: rtl;
  font-family: 'Narkiss', sans-serif;
  color: #fff;
}
@media (prefers-color-scheme: dark) {
  html,
  body {
    color: #fff;
  }
}
html *,
body * {
  box-sizing: content-box;
}
html .show-mobile,
body .show-mobile {
  display: none;
}
html .show-desktop,
body .show-desktop {
  display: block;
}
@media screen and (max-width: 768px) {
  html .show-mobile,
  body .show-mobile {
    display: block;
  }
  html .show-desktop,
  body .show-desktop {
    display: none;
  }
}
html #menu,
body #menu {
  max-width: 100dvw;
  height: 64px;
  background-color: #00104A;
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: auto;
  z-index: 1;
  padding: 0 calc((100vw - 1280px) / 2);
  justify-content: space-between;
}
html #menu .right,
body #menu .right,
html #menu .left,
body #menu .left {
  display: flex;
  align-items: center;
  gap: 16px;
}
html #menu .right,
body #menu .right {
  display: flex;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  html #menu .right,
  body #menu .right {
    gap: 12px;
  }
}
html #menu .right .menu-links,
body #menu .right .menu-links {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  html #menu .right .menu-links,
  body #menu .right .menu-links {
    display: none;
  }
  html #menu .right .menu-links.show,
  body #menu .right .menu-links.show {
    display: flex;
  }
}
html #menu .right a,
body #menu .right a {
  font-weight: 700;
  font-size: 19px;
}
html #menu .right .site-logo,
body #menu .right .site-logo {
  height: 20px;
  display: inline-flex;
}
html #menu .right .site-logo svg,
body #menu .right .site-logo svg {
  height: 100%;
}
html #menu .left a,
body #menu .left a {
  display: inline-flex;
}
html #menu .left a .menu-button,
body #menu .left a .menu-button {
  width: 72px;
  height: 30px;
  background: white;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
html #menu .left a .menu-button.bb,
body #menu .left a .menu-button.bb {
  background: #248BEF;
  background: linear-gradient(130deg, #248bef 0%, #1fa7f4 41%, #0590f0 42%, #1dd7fd 98%);
  color: #fff;
}
html #menu .left a .menu-button.vod,
body #menu .left a .menu-button.vod {
  background-color: #0A0C18;
  border: 1px solid #fff;
}
html #menu .left a .menu-button.vod svg,
body #menu .left a .menu-button.vod svg {
  height: 55%;
  overflow: visible;
}
html #menu .left a .menu-button.live,
body #menu .left a .menu-button.live {
  color: #011D6B;
}
html #menu .left a .menu-button i.icon.live,
body #menu .left a .menu-button i.icon.live {
  background-color: red;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
html #menu .left a .menu-button i.icon.bb-live,
body #menu .left a .menu-button i.icon.bb-live {
  background-image: url("https://media.reshet.tv/image/upload/v1767605216/Eye_2021_jgolc0.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1;
  width: 22px;
}
@media screen and (max-width: 768px) {
  html #menu .left a .menu-button i.icon.bb-live,
  body #menu .left a .menu-button i.icon.bb-live {
    width: 15px;
  }
}
@media screen and (max-width: 768px) {
  html #menu .left a .menu-button,
  body #menu .left a .menu-button {
    width: 51px;
    height: 23px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
  }
}
html #menu .burger,
body #menu .burger {
  display: none;
}
@media screen and (max-width: 768px) {
  html #menu,
  body #menu {
    height: 48px;
    padding: 0 20px;
  }
  html #menu .burger,
  body #menu .burger {
    display: inline-flex;
  }
}
html #menu a,
body #menu a {
  text-decoration: none;
  color: #fff;
}
html #menu a:visited,
body #menu a:visited {
  color: #fff;
}
html #container,
body #container {
  box-sizing: border-box;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: calc(100dvh - 64px);
  width: 100dvw;
  position: relative;
  z-index: 0;
  background-color: black;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html #container,
  body #container {
    height: calc(100dvh - 48px);
    padding: 60px 20px 20px;
  }
}
html #container .bg,
body #container .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  html #container .logo,
  body #container .logo {
    max-width: 65dvw;
  }
  html #container .logo img,
  body #container .logo img {
    width: 100%;
  }
}
html #container h1,
body #container h1,
html #container h2,
body #container h2 {
  text-align: center;
}
html #container h1,
body #container h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 4px;
}
html #container h2,
body #container h2 {
  margin-top: 4px;
  font-weight: 500;
  font-size: 40px;
  line-height: 110%;
  margin-bottom: 40px;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  html #container h1,
  body #container h1 {
    font-size: 32px;
  }
  html #container h2,
  body #container h2 {
    font-size: 22px;
    max-width: 303px;
  }
}
html #container .links,
body #container .links {
  display: flex;
  gap: 12px;
  max-width: 100%;
  justify-content: center;
}
html #container .links div.button,
body #container .links div.button {
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #32323233;
  box-shadow: 1px 1px 7px;
  box-shadow-color: #00000029;
  padding: 10px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  max-width: 205px;
}
html #container .links div.button img,
body #container .links div.button img {
  pointer-events: none;
  width: 100%;
  object-fit: contain;
}
html #container .links div.button.general,
body #container .links div.button.general {
  font-size: 30px;
  text-align: center;
  vertical-align: middle;
  background: #039BCD;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.6);
  color: #fff;
  justify-content: center;
  max-width: 260px;
  min-width: 260px;
  height: 46px;
  max-height: 46px;
  box-sizing: border-box;
  padding: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  html #container .links div.button.general,
  body #container .links div.button.general {
    display: flex;
    font-size: 26px;
    width: 100%;
    max-width: 317px;
  }
}
@media screen and (max-width: 768px) {
  html #container .links,
  body #container .links {
    width: 100%;
  }
}
html #container #phone,
body #container #phone {
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 440px;
  width: 300px;
  background-color: #039BCD;
  border: 7.5px solid #000;
  border-bottom: none;
  border-radius: 37px 37px 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  box-shadow: 2px 3px 4px rgba(10, 10, 10, 0.88);
}
@media screen and (max-width: 768px) {
  html #container #phone,
  body #container #phone {
    display: none;
  }
}
html #container #phone .notch,
body #container #phone .notch {
  height: 0;
  width: 75px;
  border: 5px solid #000;
  border-radius: 10px;
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
}
html #container #phone #qrcode,
body #container #phone #qrcode {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
}
html .agent,
body .agent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: #000;
  color: #fff;
  z-index: 9999;
  opacity: 0.8;
}
html #loader,
body #loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}
html #loader.hide,
body #loader.hide {
  opacity: 0;
  pointer-events: none;
}
html #loader .loader-spinner,
body #loader .loader-spinner {
  display: flex;
  animation: spin 1s linear infinite;
}
@media screen and (max-width: 1600px) and (min-width: 768px) {
  body #container .logo {
    height: 100px;
  }
  body #container .logo img {
    height: 100%;
  }
  body #container h1 {
    font-size: 50px;
    margin-top: 35px;
  }
  body #container h2 {
    font-size: 30px;
  }
  body #container .links .button {
    font-size: 20px;
  }
  body #container #phone {
    height: 310px;
    width: 260px;
    padding-top: 40px;
  }
}
/*# sourceMappingURL=style.css.map */