body,
html {
  padding: 0;
  margin: 0;
  min-height: 100%;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  background: #08111a;
  color: #fff;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(232, 169, 0, 0.16), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(155deg, #070b12 0%, #0c1521 48%, #0f1927 100%);
}
body:before,
body:after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}
body:before {
  background:
    repeating-linear-gradient(-58deg, transparent 0 44px, rgba(232, 169, 0, 0.035) 44px 46px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  z-index: 0;
}
body:after {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.045), transparent 18%),
    radial-gradient(circle at 80% 84%, rgba(232, 169, 0, 0.08), transparent 22%);
  z-index: 0;
}
.header {
  position: relative;
  width: min(1320px, calc(100% - 24px));
  margin: 14px auto 0;
  padding: 16px 18px;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(7, 11, 18, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 3;
}
.header .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e8a900, #ffd766);
  box-shadow: 0 16px 32px rgba(232, 169, 0, 0.25);
}
.header .logo img {
  width: 40px;
  height: auto;
}
.header .catalog-mark {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: min(430px, 100%);
}
.header .catalog-mark__eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 0.36rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 169, 0, 0.28);
  background: rgba(232, 169, 0, 0.12);
  color: #ffd766;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header .catalog-mark__title {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
}
.header .catalog-mark__text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 34ch;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.catalog-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 48px;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}
.catalog-menu-toggle .material-icons {
  font-size: 1.15rem;
  line-height: 1;
}
.catalog-menu-toggle::before {
  content: "";
  display: none;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}
.catalog-menu-toggle:hover,
.catalog-menu-toggle:focus-visible {
  border-color: rgba(232, 169, 0, 0.34);
  background: rgba(232, 169, 0, 0.12);
  transform: translateY(-1px);
}
.header .center {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  text-align: right;
  padding: 0;
}
.header .center #showbutton {
  float: right;
}
.header .center .button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 50px;
  width: auto;
  line-height: 50px;
  -moz-border-radius: 999px;
  -webkit-border-radius: 999px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 800;
  margin: 0;
  -moz-transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header .center .button a {
  padding: 0 18px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  text-transform: none;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}
.header .center .button .label-mobile {
  display: none;
}
.header .center .button:hover {
  border-color: rgba(232, 169, 0, 0.34);
  -moz-box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}
.header .center .button:active {
  -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.header .center .button.active {
  border-color: transparent;
  background: linear-gradient(135deg, #e8a900, #ffd766);
}
.header .center .button.active a {
  color: #11151d;
}
.header .center .button.button--ghost a {
  color: rgba(255, 255, 255, 0.92);
}
.header .center .button[data-catalog-button] {
  min-height: 50px;
  height: auto;
  line-height: normal;
}
.header .center .button[data-catalog-button] a {
  padding: 12px 16px;
  font-size: 0.82rem;
  line-height: 1.25;
  white-space: normal;
}
.demo-info {
  position: absolute;
  width: 500px;
  top: 200px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  padding: 16px;
  max-width: 100vw;
  background: #fff;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -moz-transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.demo-info.hidden {
  -moz-transform: translate(0, -300%);
  -ms-transform: translate(0, -300%);
  -o-transform: translate(0, -300%);
  -webkit-transform: translate(0, -300%);
  transform: translate(0, -300%);
}
.demo-info h1 {
  margin-top: 0;
  font-weight: 500;
}
.demo-info .button,
.demo-info a {
  color: #fff;
  background: #303F9F;
  display: inline-block;
  text-align: center;
  padding: 0 16px;
  height: 48px;
  line-height: 48px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
}
.demo-info .button {
  float: right;
  width: auto;
}
.demo-info a {
  text-decoration: none;
  margin: 8px 0;
}
.demo-info ul {
  list-style: square;
}
#reader-container {
  width: min(1260px, calc(100% - 32px));
  height: calc(100vh - 162px);
  max-height: calc(100vh - 162px);
  min-height: 520px;
  position: absolute;
  top: 118px;
  left: 0;
  right: 0;
  margin: auto;
  background: transparent;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  z-index: 2;
}
#reader-container.wbg {
  background: inherit;
}
#reader-container:fullscreen {
  background: url(image/background.png) 50% 50% no-repeat;
  background-size: cover;
}
#reader-container:-webkit-fullscreen {
  background: url(image/background.png) 50% 50% no-repeat;
  background-size: cover;
}
#reader-container:-webkit-full-screen {
  background: url(image/background.png) 50% 50% no-repeat;
  background-size: cover;
}
#reader-container:-moz-fullscreen {
  background: url(image/background.png) 50% 50% no-repeat;
  background-size: cover;
}
#reader-container:-ms-fullscreen {
  background: url(image/background.png) 50% 50% no-repeat;
  background-size: cover;
}
#background {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 11, 18, 0.52) 0%, rgba(7, 11, 18, 0.22) 30%, rgba(7, 11, 18, 0.64) 100%),
    radial-gradient(circle at 16% 18%, rgba(232, 169, 0, 0.14), transparent 20%),
    url(image/background.png) 50% 50% no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.96;
}
#reader-container .status.gone,
#reader-container .status.force-hidden {
  display: none !important;
  transform: none !important;
}
#reader-container .main-loader.hidden {
  display: none !important;
}
.icon {
  color: rgba(0, 0, 0, 0.87);
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 48px;
  text-transform: none;
  text-align: center;
  letter-spacing: normal;
  -ms-word-wrap: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -moz-font-feature-settings: 'liga';
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
}
.icon.invert {
  color: rgba(255, 255, 255, 0.87);
}
.mobile-only {
  display: none;
}
@media only screen and (max-width: 1220px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: initial;
  }
}
@media only screen and (max-width: 670px) {
  body {
    padding-top: 126px;
  }
  .header {
    position: fixed;
    top: 8px;
    left: 8px;
    right: 8px;
    width: auto;
    margin: 0;
    padding: 10px 12px;
    gap: 10px;
    min-height: 64px;
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 22px;
    z-index: 40;
  }
  .header .catalog-mark {
    grid-column: auto;
    order: 2;
    max-width: 100%;
    gap: 2px;
    align-self: center;
  }
  .header .logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 12px 22px rgba(232, 169, 0, 0.22);
  }
  .header .logo img {
    width: 28px;
  }
  .header .catalog-mark__eyebrow {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.6rem;
    letter-spacing: 0.09em;
  }
  .header .catalog-mark__title {
    font-size: 0.98rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header .catalog-mark__text {
    display: none;
  }
  .catalog-menu-toggle {
    display: none;
    order: 3;
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
  }
  .catalog-menu-toggle .material-icons {
    display: none;
  }
  .catalog-menu-toggle::before {
    display: block;
  }
  .catalog-menu-toggle span:last-child {
    display: none;
  }
  .header .center {
    position: fixed;
    top: 78px;
    left: 8px;
    right: 8px;
    order: 4;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: auto;
    margin-top: 0;
    padding: 0 2px 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    text-align: left;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    z-index: 39;
  }
  .header .center::-webkit-scrollbar {
    display: none;
  }
  .header .center .button {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    justify-content: stretch;
  }
  .header .center .button a {
    justify-content: center;
    text-align: center;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .header .center .button[data-catalog-button] a {
    min-height: 42px;
    padding: 0 14px;
  }
  .header .center .button .label-desktop {
    display: none;
  }
  .header .center .button .label-mobile {
    display: inline;
  }
  .header .center .button[data-catalog-button="isg"] a span,
  .header .center .button[data-catalog-button="otopark"] a span {
    display: none;
  }
  .header .center .button[data-catalog-button="isg"] a::before {
    content: "İş Güvenliği";
  }
  .header .center .button[data-catalog-button="otopark"] a::before {
    content: "Otopark";
  }
  #reader-container {
    width: calc(100% - 16px);
    top: 126px;
    height: calc(100svh - 138px);
    max-height: calc(100svh - 138px);
    min-height: 0;
    border-radius: 22px;
  }
  .demo-info {
    top: 90px;
  }
}
@media only screen and (max-width: 520px) {
  #reader-container {
    top: 124px;
    height: calc(100svh - 136px);
    max-height: calc(100svh - 136px);
  }
}
@media only screen and (max-width: 419px) {
  .header .catalog-mark__title {
    font-size: 0.92rem;
  }
  .header .center .button a {
    padding: 0 10px;
    font-size: 0.82rem;
  }
  .catalog-menu-toggle {
    min-height: 44px;
    width: 44px;
    min-width: 44px;
  }
  .header .center .button a {
    font-size: 0.8rem;
  }
}
