@charset "UTF-8";

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo a {
  flex-shrink: 0;
}

/* ========================================
   Language Toggle Switch (5play.org style)
   ======================================== */
.lang-switcher {
  display: flex;
  align-items: center;
}

.falang-language-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex !important;
  align-items: center;
  gap: 0;
  background: #f0f0f0;
  border-radius: 20px;
  padding: 3px;
  border: none;
}

html.darkmod .falang-language-switcher {
  background: rgba(255, 255, 255, 0.1);
}

.falang-language-switcher li {
  margin: 0 !important;
  padding: 0;
}

.falang-language-switcher li a {
  text-decoration: none !important;
  padding: 6px 14px;
  color: #888;
  font-weight: 600 !important;
  font-size: 0;
  /* Hide original text */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.25s ease;
  min-width: 42px;
  text-align: center;
  background: transparent;
}

/* Show short language codes instead of full names */
.falang-language-switcher li a:after {
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  letter-spacing: 0.02em;
}

.falang-language-switcher li a[href*="/en/"]:after,
.falang-language-switcher li a[href$="/"]:not([href*="/ru/"]):after {
  content: "EN";
}

.falang-language-switcher li a[href*="/ru/"]:after {
  content: "РУ";
}

/* Active/Current language - Green pill style */
.falang-language-switcher li a.current {
  background: #07d66b;
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(7, 214, 107, 0.35);
}

.falang-language-switcher li a.current:after {
  color: #fff;
}

html.darkmod .falang-language-switcher li a.current {
  background: #07d66b;
  color: #fff !important;
}

/* Hover effect for non-active language */
.falang-language-switcher li a:not(.current):hover {
  color: #333;
  background: rgba(0, 0, 0, 0.05);
}

html.darkmod .falang-language-switcher li a:not(.current):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

html.darkmod .falang-language-switcher li a:not(.current) {
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile styles */
@media (max-width: 992px) {
  .lang-switcher {
    display: none !important;
  }

  .lang-switcher-mobile {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  html.darkmod .lang-switcher-mobile {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .lang-switcher-mobile ul.falang-language-switcher {
    margin: 0 auto;
  }

  .lang-switcher-mobile ul.falang-language-switcher li img {
    display: none;
  }
}

@media (min-width: 992px) {
  .lang-switcher-mobile {
    display: none !important;
  }
}

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #ec4899;
  --accent-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --success-color: #22c55e;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-page: #fbfbfa;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-white: #fff;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bg-primary-dark: #292c2f;
  --bg-success: #07d66b;
  --bg-white: #ffffff;
  --font-heading: "DM Sans", "Figtree", sans-serif;
  --font-body: "Figtree", sans-serif;
  /* Base (mobile first) */
  --font-size-h1: 1.75rem;
  /* 28px */
  --font-size-h2: 1.5rem;
  /* 24px */
  --font-size-h3: 1.25rem;
  /* 20px */
  --font-size-h4: 1.125rem;
  /* 18px */
  --font-size-p: 1rem;
  /* 16px */
  --font-size-small: 0.875rem;
  /* 14px */
  --line-height-heading: 1.3;
  --line-height-body: 1.6;
}

/* -- Tablet (≥ 768px) -- */
@media (min-width: 768px) {
  :root {
    --font-size-h1: 2rem;
    /* 32px */
    --font-size-h2: 1.75rem;
    /* 28px */
    --font-size-h3: 1.5rem;
    /* 24px */
    --font-size-h4: 1.25rem;
    /* 20px */
    --font-size-p: 1.0625rem;
    /* 17px */
  }
}

/* Desktop (≥ 1024px) */
@media (min-width: 1024px) {
  :root {
    --font-size-h1: 2.5rem;
    /* 40px */
    --font-size-h2: 2rem;
    /* 32px */
    --font-size-h3: 1.75rem;
    /* 28px */
    --font-size-h4: 1.5rem;
    /* 24px */
    --font-size-p: 1.125rem;
    /* 18px */
  }
}

.load * {
  transition: none !important;
}

/* ========================================
   Dark Mode CSS Variables
   ======================================== */
html.darkmod {
  --bg-primary: #1a1a1a;
  --bg-secondary: #222222;
  --bg-tertiary: #2a2a2a;
  --bg-card: #242424;
  --bg-page: #1a1a1a;
  --bg-white: #242424;
  --text-primary: #e4e4e7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.2);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.2);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.2);
}

/* ========================================
   Keyframe Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-out both;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out both;
}

.animate-scale-in {
  animation: scaleIn 0.4s ease-out both;
}

.animate-slide-in-left {
  animation: slideInLeft 0.5s ease-out both;
}

/* Stagger delays for card grids */
.stagger-1 {
  animation-delay: 0.05s;
}

.stagger-2 {
  animation-delay: 0.1s;
}

.stagger-3 {
  animation-delay: 0.15s;
}

.stagger-4 {
  animation-delay: 0.2s;
}

.stagger-5 {
  animation-delay: 0.25s;
}

.stagger-6 {
  animation-delay: 0.3s;
}

.stagger-7 {
  animation-delay: 0.35s;
}

.stagger-8 {
  animation-delay: 0.4s;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  .animate-fade-in-up,
  .animate-fade-in,
  .animate-scale-in,
  .animate-slide-in-left {
    animation: none;
  }
}

*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  outline: 0 !important;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.anchor-line {
  overflow: hidden;
  height: 0;
}

.anchor-line>span {
  margin-top: -4rem;
  display: block;
  height: 1px;
}

@media (min-width: 768px) {
  .anchor-line>span {
    margin-top: -5rem;
  }
}

body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
  text-align: left;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  min-width: 320px;
  background-color: #fbfbfa;
}

@media (min-width: 768px) {
  body {
    --tw-bg-opacity: 1;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  }

  .body-main {
    background-position: 50% 22.5rem;
  }
}

@media (max-width: 767px) {
  .body-main {
    background-position: 50% 21.5rem;
  }
}

a {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0);
}

@media (min-width: 992px) {
  body {
    display: flex;
    flex-direction: column;
  }

  a:hover {
    text-decoration: underline;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.h1,
h1 {
  font-size: var(--font-size-h1);
}

.h2,
h2 {
  font-size: var(--font-size-h2);
}

.h3,
h3 {
  font-size: var(--font-size-h3);
}

.h4,
h4 {
  font-size: 1.5rem;
}

.h5,
h5 {
  font-size: 1.25rem;
}

.h6,
h6 {
  font-size: 1rem;
}

.title {
  line-height: 1.3;
  word-wrap: break-word;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #edeff1;
}

.smf {
  font-size: 0.875rem;
}

.xsmf {
  font-size: 0.8125rem;
}

.xxsmf {
  font-size: 0.6875rem;
}

.normf {
  font-size: 1rem;
}

.lgf {
  font-weight: 700;
  letter-spacing: -0.02rem;
}

.xlgf {
  font-weight: 700;
  letter-spacing: -0.02rem;
}

.xxlgf {
  font-weight: 700;
  letter-spacing: -0.04rem;
}

.xxxlgf {
  font-weight: 700;
  letter-spacing: -0.06rem;
}

.lgf {
  font-size: 1.125rem;
}

.xlgf {
  font-size: 1.3rem;
}

.xxlgf {
  font-size: 1.5rem;
}

.xxxlgf {
  font-size: 1.8rem;
}

@media (min-width: 460px) and (max-width: 1279px) {
  .lgf {
    font-size: 1.2rem;
  }

  .xlgf {
    font-size: 1.35rem;
  }

  .xxlgf {
    font-size: 1.65rem;
  }

  .xxxlgf {
    font-size: 2rem;
  }
}

@media (min-width: 1280px) {
  .lgf {
    font-size: 1.375rem;
  }

  .xlgf {
    font-size: 1.625rem;
  }

  .xxlgf {
    font-size: 2rem;
  }

  .xxxlgf {
    font-size: 2.75rem;
  }
}

.fbold {
  font-weight: 700;
}

.fnormal {
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
}

.noline {
  text-decoration: none !important;
}

.uline {
  text-decoration: underline !important;
}

.muted {
  color: #b2b2b2 !important;
}

.c-warn {
  color: #8d764d !important;
}

.b-yellow {
  background-color: #ffe93b;
}

.vhide {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

.cover {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.arrow_drop::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -0.15rem;
  margin-left: 0.25rem;
  border-width: 0.25rem 0.25rem 0 0.25rem;
  border-right-color: rgba(255, 255, 255, 0);
  border-bottom-color: rgba(255, 255, 255, 0);
  border-left-color: rgba(255, 255, 255, 0);
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-a,
  .grid-f,
  .grid-m {
    position: relative;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .grid-m {
    flex-basis: 0%;
    flex-grow: 1;
    max-width: 100%;
  }

  .grid-a {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .grid-f {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .grid-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .grid-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .grid-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.page {
  width: 100%;
}

.wrp {
  width: 100%;
  max-width: calc(1200px + 4rem);
  margin: 0 auto;
}

@media (min-width: 400px) {
  .wrp {
    padding: 0 0.5rem;
  }
}

.footer {
  margin-top: auto;
  color: #343a40;
}

.foot_line {
  display: none;
}

.copyright {
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .copyright {
    margin-top: 2rem;
  }
}

@media (min-width: 768px) {

  .copyright,
  .footer .banner {
    margin-top: 4.5rem;
  }
}

@media (min-width: 992px) {
  .foot_line {
    display: block;
    background-color: rgba(237, 239, 236, 0.6509803922);
  }

  .foot_line>.wrp {
    display: flex;
  }

  ul.foot_menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 0 -0.75rem;
  }

  .social::before,
  ul.foot_menu>li>a {
    opacity: 0.8;
    padding: 0.25rem 0.75rem;
    line-height: 1.5rem;
  }

  ul.foot_menu>li>a {
    color: inherit;
    display: block;
  }

  ul.foot_menu>li>a:hover {
    opacity: 1;
  }

  .social::before {
    content: attr(title);
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
  }
}

@media (min-width: 576px) {
  .copyright svg {
    vertical-align: middle;
    margin-top: -0.25rem;
    margin-right: 0.5rem;
  }

  .copyright_i2::before {
    content: " â€” ";
  }
}

@media (max-width: 575px) {
  .copyright {
    text-align: center;
  }

  .copyright>* {
    display: block;
  }

  .copyright svg {
    width: 2rem;
    height: auto;
    margin-bottom: 1rem;
  }
}

.social {
  display: flex;
  margin-left: auto;
}

.soc_vk {
  color: #6d99cb;
}

.soc_tg {
  color: #039be5;
}

.soc_fb {
  color: #1778f2;
}

.soc_yt {
  color: #ea3d3d;
}

.logo {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.logo svg {
  width: 128px;
  height: 64px;
  display: block;
}

.logo>a {
  margin-left: -1rem;
  display: block;
}

.logo-t-fill {
  fill: #121416;
}

.logo-wmd-bg {
  fill: #ffebeb;
}

.logo-psh-bg {
  fill: #e6f4dc;
}

.logo-hwn-bg {
  fill: #29343d;
}

.logo-hny-bg {
  fill: #DCEFF7;
}

.logo-hbd-bg {
  fill: #eeebff;
}

.logo-ahd-bg {
  fill: #e6f4dc;
}

.logo-lvd-bg {
  fill: #FFEBEB;
}

.logo-lvd-text {
  fill: #4f3232;
}

@media (min-width: 1140px) {
  .logo {
    flex: 1 1 0%;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .tools>.lang {
    display: none;
  }

  .header>header::after {
    clear: both;
    display: block;
    content: "";
  }

  .toggle_submenu {
    display: block;
  }

  .hmenu {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: none;
    opacity: 0;
    overflow: hidden;
    overflow-y: scroll;
    transition: opacity 0.3s ease;
  }

  .hmenu.sm {
    overflow: hidden;
  }

  .hmenu .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    opacity: 0;
    z-index: 1;
  }

  .head_menu {
    margin: 0;
    width: 100%;
    min-height: 100%;
    max-width: 580px;
    padding: 0 2rem;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.5s ease, opacity 0.3s ease;
    transform: translateY(30%);
    opacity: 0;
  }

  .head_menu {
    padding: 4rem 0 3.5rem 0;
  }

  .head_menu>ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .head_menu>ul>li>a {
    display: block;
    padding: 0.55rem 2.5rem;
  }

  .head_menu>ul.head_menu_f>li>a {
    font-size: 1.25rem;
    padding: 0.75rem 2.5rem;
    line-height: 1.5rem;
    height: 3rem;
  }

  .head_menu>ul a {
    color: inherit;
  }

  .head_menu>ul.head_menu_s {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .head_menu button {
    border: 0 none;
    background: 0 0;
  }

  .head_menu_s_foot {
    padding: 0.75rem 2rem;
    margin-top: auto;
  }

  .head_menu_s_foot>.lang {
    float: right;
  }

  .head_menu .social {
    margin-left: 0;
    padding: 0.5rem;
  }

  .submenu:not(.open)>.toggle_submenu {
    position: absolute;
    margin: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    opacity: 0.5;
    padding: 0.75rem;
    transform: translateY(-100%);
    margin-right: 1.5rem;
  }

  .submenu:not(.open)>.toggle_submenu::after {
    content: "";
    display: block;
    border: 0 solid;
    border-width: 2px 2px 0 0;
    width: 0.75rem;
    height: 0.75rem;
    transform: rotate(45deg);
  }

  .submenu.open {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 122;
    overflow: hidden;
    overflow-y: scroll;
  }

  .submenu.open>.toggle_submenu {
    height: 4rem;
    width: 4rem;
    color: inherit !important;
  }

  .submenu .toggle_submenu .i__arrowleft {
    width: 1.5rem;
    height: 1.5rem;
    display: none;
  }

  .submenu.open .toggle_submenu .i__arrowleft {
    display: block;
    margin: 0 auto;
  }

  .submenu>ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 4rem 0;
  }

  .hmenu.open,
  .submenu.open>ul {
    display: block;
  }

  .submenu>ul>li>a {
    font-size: 1rem;
    display: block;
    padding: 0.5rem 2.5rem;
    line-height: 1.5rem;
  }

  .submenu>ul>li:first-child>a {
    font-size: 1.25rem;
    padding: 0.75rem 2.5rem;
  }

  html.hm {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }

  html.hm .hmenu.open {
    opacity: 1;
  }

  html.hm .hmenu.open .btn-close,
  html.hm .hmenu.open>.head_menu {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 500px) and (max-width: 991px) {

  .head_menu>ul.head_menu_f>li>a,
  .head_menu>ul>li>a,
  .submenu>ul>li:first-child>a,
  .submenu>ul>li>a {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .head_menu_s_foot {
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .submenu:not(.open)>.toggle_submenu {
    margin-right: 3rem;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .logo {
    float: left;
  }

  .head_menu_btn,
  .header .tools {
    float: right;
    margin-top: 1rem;
  }

  .head_menu_btn {
    margin-right: -0.75rem;
  }

  .header .tools {
    margin-right: 0.5rem;
  }
}

@media (max-width: 767px) {

  .head_menu_btn,
  .header .tools {
    margin-top: 0.5rem;
  }
}

@media (min-width: 768px) {
  .logo>a {
    padding: 5px;
    margin-left: -1.5rem;
  }
}

@media (min-width: 992px) {
  .tools {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-left: auto;
  }

  .hmenu {
    display: block;
    flex: 3 1 0%;
    max-width: 1200px;
  }

  .head_menu_f {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .head_menu_f>li {
    flex-basis: 0%;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
  }

  .head_menu_f>li>a {
    display: block;
    padding: 1rem 0.75rem;
    color: inherit;
    text-decoration: none !important;
  }

  .head_menu_f>li>a>span {
    display: block;
  }

  .head_menu_f>li>a>i {
    display: block;
    margin-bottom: 0.25rem;
  }

  .head_menu_f>li>a>i svg {
    width: 24px;
    height: 24px;
  }

  .head_menu_f>li>a>i svg>* {
    opacity: 1;
  }

  .head_menu_f>li.active>a {
    opacity: 1 !important;
  }

  .head_menu_f>li.active>a i {
    color: inherit !important;
  }

  .head_menu_f>li.active>a svg .icon_lightcolor {
    opacity: 0.3;
  }

  .head_menu_f>li>a,
  .head_menu_f>li>a>* {
    cursor: pointer;
  }

  .head_menu_f>li>a {
    transition: opacity 0.2s ease;
  }

  .head_menu_f>li>a:hover {
    opacity: 0.6;
  }

  .head_menu_s,
  .head_menu_s_foot {
    display: none !important;
  }

  .toggle_submenu {
    display: none;
  }

  .submenu {
    position: absolute;
    left: 50%;
    top: 100%;
    margin-top: -0.25rem;
    font-size: 0.875rem;
    transform: translateX(-50%) translateY(-1rem);
    background-color: #fff;
    box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease 0.1s, transform 0.4s ease 0.1s;
  }

  .head_menu_f>li:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .submenu::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 0 0.75rem 0.75rem 0.75rem;
    border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) #fff rgba(255, 255, 255, 0);
  }

  .submenu ul {
    list-style: none;
    padding: 1rem;
    margin: 0;
  }

  .submenu ul>li {
    min-width: 10rem;
  }

  .submenu ul>li>a {
    text-align: left;
    display: block;
    padding: 0.25rem 0.5rem;
    font-weight: 400;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
  }
}

@media (min-width: 1140px) {
  .tools {
    flex: 1 1 0%;
  }
}

@media (min-width: 576px) {
  .logo svg {
    margin-left: -0.5rem;
  }

  .tools {
    margin-right: -0.5rem;
  }
}

.head_menu_btn,
.tool-btn {
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  color: inherit;
}

button.head_menu_btn {
  border: 0 none;
  background: 0 0;
  position: relative;
}

@media (max-width: 575px) {
  .head_menu_btn {
    float: left;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo>a {
    margin-left: 0 !important;
  }

  .tools {
    float: right;
  }

  header {
    display: block !important;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .butterbrod {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;
    color: inherit;
    overflow: hidden;
    cursor: pointer;
  }

  .butterbrod>i {
    display: block;
    margin: 5px auto 0 auto;
    max-width: 18px;
    height: 0;
    border-top: 2px solid;
  }

  .butterbrod>i:first-child {
    margin-top: 4px;
  }

  header {
    display: block !important;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .head_menu_btn {
    float: left;
  }
}

.tool-btn {
  border: 0 none;
  background: 0 0;
  position: relative;
}

.tool-btn>svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}

@media (min-width: 992px) {
  .tool-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    margin: -1rem 0 0 -1rem;
    transform: scale(0.5);
    opacity: 0;
    background-color: rgba(220, 225, 229, 0.3);
    transition: opacity 0.2s ease, transform 0.4s ease;
  }

  .tool-btn:hover::after {
    transform: scale(1);
    opacity: 1;
  }
}

a.lang {
  display: inline-block;
  cursor: pointer;
}

a.lang,
a.lang>span {
  padding: 0.5rem;
}

a.lang {
  text-decoration: none !important;
  color: inherit;
}

.flag {
  width: 1.125rem;
  height: 1.125rem;
  background-size: 100% auto;
  margin-right: 0.5rem;
}

.minbtn {
  background-color: rgba(220, 225, 229, 0.3);
}

a.lang>span {
  height: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .minbtn {
    transition: background-color 0.4s ease;
  }

  .minbtn:hover,
  a.lang:hover>.minbtn {
    background-color: rgba(220, 225, 229, 0.6);
  }
}

.toolbar {
  color: #343a40;
  min-width: 0;
  height: 4rem;
  margin-bottom: 2rem;
  align-items: center;
  border-bottom: 1px solid #e2e5e2;
  box-shadow: 0 1px 0 0 #fff;
}

.toolbar::after {
  clear: both;
  display: block;
  content: "";
}

.toolbar .breadcrumbs {
  overflow: hidden;
  line-height: 2rem;
  height: 2rem;
}

.toolbar_right {
  float: right;
}

.toolbar_right .catsmenu_btn:last-child {
  margin-right: -0.75rem;
}

.toolbar_right .catsmenu_btn {
  float: left;
}

.toolbar_dark {
  color: #fff;
  background-color: #121416;
  box-shadow: none !important;
  border-bottom: 0 none;
  margin-bottom: 0 !important;
}

.toolbar_dark .minbtn {
  background-color: #292c2f !important;
}

.toolbar_dark .breadcrumbs {
  display: none;
}

.toolbar_dark .breadcrumbs::after {
  background-color: #121416;
  box-shadow: 0 0 1rem 1rem #121416;
}

.catbar {
  list-style: none;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
}

.catbar>li {
  display: inline;
}

.catbar>li::after {
  content: " \203A ";
  opacity: 0.5;
}

.catbar>li:last-child::after {
  display: none;
}

.catbar>li>a {
  display: inline-block;
  padding: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
}

.breadcrumbs {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

@media (min-width: 576px) {
  .no-toolbar {
    margin-top: 2rem;
  }

  .toolbar_right>* {
    margin-left: 1rem;
  }

  .toolbar_dark .breadcrumbs {
    display: block;
  }
}

@media (max-width: 575px) {
  .toolbar {
    margin-bottom: 0;
    overflow-x: auto;
  }

  .toolbar:not(.toolbar_dark) {
    display: none;
  }

  .tb_on .toolbar:not(.tb_showfull) {
    display: block;
  }

  .tb_showfull .toolbar_right {
    display: none !important;
  }

  .toolbar.tb_showfull,
  .toolbar.tb_showfull .breadcrumbs {
    display: block !important;
    overflow-x: auto;
  }

  .toolbar.tb_showfull .breadcrumbs,
  .toolbar_right {
    flex: 1 1 auto;
  }

  .toolbar_right {
    float: none !important;
  }

  .toolbar .catsmenu_btn {
    float: left;
    margin-left: -0.75rem;
  }

  .page {
    margin-top: 2rem;
  }

  .card_row~.page {
    margin-top: 0;
  }

  .catbar>li>a {
    font-size: 0.75rem;
  }

  .catbar {
    overflow: hidden;
    position: relative;
  }

  .catbar::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 16px;
    background: linear-gradient(-90deg, #fbfbfa 0, rgba(251, 251, 250, 0) 100%);
    pointer-events: none;
  }

  html.darkmod .catbar::after {
    background: linear-gradient(-90deg, #292c2f 0, rgba(18, 20, 22, 0) 100%);
  }
}

@media (min-width: 768px) {
  .no-toolbar {
    margin-top: 3.75rem;
  }
}

@media (min-width: 500px) {
  .toolbar {
    padding: 1rem 0;
  }
}

@media (max-width: 499px) {
  .toolbar {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 339px) {
  .toolbar {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.main-head {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: auto 100%;
  background-color: #152b3c;
  color: #fff;
  overflow: hidden;
}

.main-head-left {
  position: relative;
  z-index: 1;
  max-width: 28rem;
}

.main-head-left,
.main-head-right {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

.main-head .title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.main-head .title+p {
  line-height: 1.5em;
  max-height: 4.5em;
  overflow: hidden;
}

@media (max-width: 991px) {
  .main-head-left {
    margin: 0 auto;
    text-align: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .main-head .btn-orange {
    display: inline-block !important;
  }

  .main-head .btn {
    width: 47%;
    max-width: 9rem;
  }

  .main-head .btn-orange {
    margin-left: 0.5rem;
  }
}

@media (max-width: 576px) {
  .main-head {
    background-position: 30% 50%;
  }
}

@media (min-width: 992px) {
  .main-head .wrp {
    display: flex;
  }

  .main-head-right {
    display: block !important;
    position: relative;
    background-color: #f77a4c;
    width: 45%;
    max-width: 30rem;
    padding-left: 2rem;
    margin-left: auto;
  }

  .main-head-right::after,
  .main-head-right::before {
    content: "";
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0);
  }

  .main-head-right::after {
    left: 0;
    margin-left: -9.75rem;
    border-bottom-color: #f77a4c;
    border-width: 0 0 22.5rem 9.75rem;
  }

  .main-head-right::before {
    right: 0;
    margin-right: -9.75rem;
    border-top-color: #f77a4c;
    border-width: 22.5rem 9.75rem 0 0;
  }
}

@media (min-width: 1140px) {
  .main-head-right {
    margin-right: 3rem;
  }
}

.section {
  padding-top: 1.5rem;
}

.section-sep .sep_line {
  margin-top: 1.5rem;
}

.sep_line {
  height: 1px;
  width: 100%;
  background-color: rgba(230, 230, 230, 0.8705882353);
}

.section-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.section-btn {
  margin-top: 2rem;
}

@media (min-width: 500px) {
  .section-sep .sep_line {
    margin-top: 2.5rem;
  }
}

@media (min-width: 768px) {
  .section-sep .sep_line {
    margin-top: 3.75rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 575px) {
  .section-btn .btn {
    width: 100%;
    display: block;
  }
}

@media (max-width: 499px) {
  .section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 350px) {
  .section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.carousel-apps {
  overflow: hidden;
  position: relative;
}

.carousel-apps-out {
  position: relative;
}

.carousel-apps {
  margin: -2rem 0;
  white-space: nowrap;
}

.card-list .item,
.carousel-apps .item {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.carousel-apps .item {
  max-width: 13.75rem;
  padding: 2rem 0;
  padding-left: 0.5rem;
}

.card-list {
  margin: -0.75rem;
}

.card-list .item {
  max-width: 25%;
  padding: 0.75rem;
}

.card-list .item_app,
.carousel-apps .item_app {
  box-shadow: 0 0.25rem 1.5rem 1px rgba(0, 0, 0, 0.03);
  background-color: #fff;
  border-radius: 0.125rem;
  padding: 1.25rem;
  text-align: left;
}

.card-list .item_app .cont,
.carousel-apps .item_app .cont {
  margin: 0;
}

.card-list .item_app .img,
.carousel-apps .item_app .img {
  float: none;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.card-list .item_app .img img,
.carousel-apps .item_app .img img {
  width: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

.card-list .item_app .img::after,
.carousel-apps .item_app .img::after {
  display: block;
  content: "";
  padding-top: 100%;
  width: 1px;
  margin-left: -1px;
}

.card-list .item_app.mod .meta::before,
.carousel-apps .item_app.mod .meta::before {
  display: none;
}

.card-list .item_app.mod .img::before,
.carousel-apps .item_app.mod .img::before {
  content: "MOD";
  position: absolute;
  right: 0.25rem;
  bottom: 0.25rem;
  z-index: 1;
  background-color: #dc2626;
  color: #fff;
  border-radius: 0.75rem;
}

.card-list .item_app .name,
.carousel-apps .item_app .name {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.card-list .item_app .name>a>span,
.carousel-apps .item_app .name>a>span {
  white-space: normal;
  line-height: 1.4rem;
  max-height: 2.8rem;
}

.card-list .item_app .data,
.carousel-apps .item_app .data {
  height: 2.5rem;
}

.card-list .item_app .data .developer,
.carousel-apps .item_app .data .developer {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-list .item_app .meta,
.carousel-apps .item_app .meta {
  margin-top: 1rem;
  height: 1.25rem;
}

.card-list .item_app .meta .rate_star,
.carousel-apps .item_app .meta .rate_star {
  margin-top: 0 !important;
}

@media (min-width: 992px) {
  .carousel-apps-out::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin-left: -1.5rem;
    width: 1.5rem;
    background-image: linear-gradient(90deg, #fbfbfa 0, rgba(251, 251, 250, 0) 100%);
  }

  .card-list .item_app:hover,
  .carousel-apps .item_app:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 0.25rem 1.5rem 1px rgba(0, 0, 0, 0.05);
  }

  .carousel-btn {
    display: block !important;
  }

  .carousel-btn--next {
    position: absolute;
    right: 0;
    top: 0;
    width: 3rem;
    height: 100%;
    border: 0 none;
    background: 0 0;
    padding: 0;
  }

  .cbtn {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    display: block;
    border-radius: 50%;
    margin-top: -1.5rem;
    margin-left: 1.5rem;
    width: 3rem;
    height: 3rem;
    padding: 0.75rem;
    box-shadow: 0 0.125rem 0.5rem 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }

  .cbtn:hover {
    transform: scale(0.92);
    transform-origin: 50% 50%;
  }

  .cbtn svg {
    display: block;
    color: #fff;
  }

  .cbtn-hide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .cbtn-hide::after {
    content: "";
    background-color: #fff;
    transform: translateX(100%);
    width: 100%;
    height: calc(100% - 2rem);
    margin-top: 1rem;
    border-radius: 2rem;
    display: block;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 991px) {
  .carousel-apps-out:not(.carousel-apps-js) {
    overflow: hidden;
  }

  .carousel-apps-out:not(.carousel-apps-js) .carousel-apps {
    margin-left: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-apps-out:not(.carousel-apps-js) .carousel-apps::after,
  .carousel-apps-out:not(.carousel-apps-js) .carousel-apps::before {
    content: "";
    display: inline-block;
    height: 2rem;
  }

  .carousel-apps-js .carousel-apps {
    margin-left: -1.5rem;
  }

  .carousel-apps-js {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }

  .carousel-apps-out::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3rem;
    pointer-events: none;
  }
}

@media (min-width: 500px) and (max-width: 991px) {
  .carousel-apps-out:not(.carousel-apps-js) {
    margin: 0 -2rem;
  }

  .carousel-apps-out:not(.carousel-apps-js) .carousel-apps::before {
    width: 0.5rem;
    min-width: 0.5rem;
  }

  .carousel-apps-out:not(.carousel-apps-js) .carousel-apps::after {
    width: 2rem;
    min-width: 2rem;
  }

  .carousel-apps-js .carousel-apps {
    margin-left: -2rem;
  }

  .carousel-apps-js {
    margin-right: -2rem;
  }

  .carousel-apps-js .carousel-apps .item {
    padding-left: 2rem;
  }
}

@media (max-width: 499px) {
  .carousel-apps-out:not(.carousel-apps-js) {
    margin: 0 -1.5rem;
  }

  .carousel-apps-out:not(.carousel-apps-js) .carousel-apps::after {
    width: 1.5rem;
    min-width: 1.5rem;
  }
}

@media (max-width: 339px) {
  .carousel-apps-out:not(.carousel-apps-js) {
    margin: 0 -0.75rem;
  }

  .carousel-apps-out:not(.carousel-apps-js) .carousel-apps::after {
    width: 0.75rem;
    min-width: 0.75rem;
  }

  .carousel-apps .item {
    padding-left: 0.5rem !important;
  }

  .carousel-apps-js .carousel-apps {
    margin-left: -0.75rem;
  }

  .carousel-apps-js {
    margin-right: -0.75rem;
  }
}

.carousel-apps-out {
  position: relative;
  overflow: hidden;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 10px;
}

.flickity-button {
  position: absolute;
}

.flickity-prev-next-button.previous {
  left: 45px;
}

.flickity-prev-next-button.next {
  right: 15px;
}

.flickity-prev-next-button:hover {
  background: rgba(255, 255, 255, 0.4) !important;
}

.flickity-prev-next-button:hover .flickity-button-icon {
  fill: #000;
}

.flickity-prev-next-button .flickity-button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  fill: #fff;
}

/* Ensure items are styled correctly */
#carousel-most-viewed .item {
  width: 20%;
  margin-right: 0.5%;
}

@media (max-width: 768px) {
  #carousel-most-viewed .item {
    width: 100%;
    margin-right: 0.5%;
  }
}

.cat-apps {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: -1rem;
  margin-top: 2rem;
}

.cat-apps-list::after,
.cat-apps::after {
  content: "";
  display: block;
  clear: both;
}

.cat-apps>li {
  float: left;
  padding-left: 1rem;
}

.cat-apps-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cat-apps-title a {
  text-decoration: none !important;
  color: inherit !important;
}

.cat-apps-list {
  margin-left: -0.25rem;
}

.cat-apps-item {
  padding-left: 0.25rem;
  float: left;
}

.cat-apps-img,
.cat-apps-item.more {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  position: relative;
}

.cat-apps-img {
  overflow: hidden;
  background-color: #fff;
}

.cat-apps-img>img {
  width: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  min-width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

.cat-apps-item.more {
  padding-left: 0;
  margin-left: 0.25rem;
}

@media (min-width: 992px) and (max-width: 1139px) {
  .cat-apps>li {
    width: 20%;
  }

  .cat-apps>li:last-child {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cat-apps>li {
    width: 25%;
  }

  .cat-apps>li {
    display: none;
  }

  .cat-apps>li:nth-child(-n+4) {
    display: block;
  }
}

@media (max-width: 767px) {
  .cat-apps>li {
    margin-top: 1.5rem;
  }

  .cat-apps {
    margin-top: 0;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .cat-apps>li {
    width: 33.333333%;
  }
}

@media (max-width: 575px) {
  .cat-apps>li {
    width: 50%;
  }

  .cat-apps-title {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1140px) {
  .cat-apps>li {
    width: 16.666666%;
  }
}

@media (min-width: 1200px) {

  .cat-apps-img,
  .cat-apps-item.more {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (min-width: 992px) {
  .cat-apps-item.more {
    transition: background-color 0.2s ease;
  }

  .cat-apps-img {
    transition: transform 0.2s ease;
  }

  .cat-apps-img:hover {
    transform: scale(1.1);
  }
}

.cat-apps-item.more .dots {
  width: 1rem;
  height: 0.25rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -0.125rem 0 0 -0.5rem;
}

.cat-apps-item.more .dots i {
  float: left;
  margin-left: 0.125rem;
  border-radius: 50%;
  width: 0.25rem;
  height: 0.25rem;
}

.cat-apps-item.more .dots i:first-child {
  margin-left: 0;
}

.last-news::after {
  content: "";
  display: block;
  clear: both;
}

.last-news .post {
  display: block;
  padding: 0;
  border: 0 none;
}

.last-news .post .img {
  margin: 0 0 1.5rem 0 !important;
  max-width: none !important;
  box-shadow: none !important;
}

.last-news .post .img::after {
  display: none !important;
}

.last-news .post .img>.cover {
  padding-top: 56.5%;
  border-radius: 0.125rem;
}

.last-news .post .title {
  font-size: 1rem;
  font-weight: 700;
}

.last-news .post .cont {
  padding: 0 !important;
}

@media (min-width: 576px) and (max-width: 767px) {
  .last-news .post:nth-child(-n+2) {
    display: block;
  }

  .last-news .post:nth-child(n+3) {
    margin-top: 2rem;
  }

  .last-news .post {
    width: 50%;
  }
}

@media (min-width: 576px) {
  .last-news {
    margin-right: -2rem;
  }

  .last-news .post {
    float: left;
    padding-right: 2rem;
  }

  .last-news .post:nth-child(n+4) {
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .last-news .post {
    border-bottom: 1px solid #edefec;
  }
}

@media (min-width: 500px) and (max-width: 575px) {
  .last-news {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-top: -2rem;
  }

  .last-news .post {
    padding: 2rem;
  }
}

@media (max-width: 499px) {
  .last-news {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    margin-top: -1.5rem;
  }

  .last-news .post {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .last-news .post {
    width: 33.333333%;
  }
}

@media (min-width: 992px) {
  .last-news {
    margin-left: -3.75rem;
  }

  .last-news .post {
    padding-left: 3.75rem;
    width: 33.333333%;
  }
}

.seo-section {
  color: rgba(21, 22, 23, 0.65);
}

.seo-section a {
  color: rgba(21, 22, 23, 0.65);
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0);
}

@media (min-width: 768px) {
  .seo-section .section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .seo-section .section-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .seo-text {
    font-size: 0.875rem;
  }
}

.seo-text h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card_row .card_bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -2;
  background-color: #000;
}

.card_big {
  width: 100%;
  position: relative;
  color: #fff;
}

.card_big>.cont {
  padding: 2rem;
  position: relative;
}

.card_big a {
  color: inherit !important;
}

.card_big>.cover {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.35;
}

.card_big .title {
  margin-bottom: 0;
}

.card_big .title>a {
  display: block;
}

.card_big .title>a>span {
  position: relative;
  z-index: 2;
  display: block;
  line-height: 1.3em;
  overflow: hidden;
}

.card_big .title>a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.card_big .meta {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  white-space: nowrap;
}

.card_big .meta a {
  display: block;
}

@media (max-width: 499px) {
  .card_big .title>a>span {
    line-height: 1.4em;
    max-height: 5.6em;
  }

  .card_row {
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 500px) {
  .card_big>.cont::before {
    content: "";
    display: block;
    width: 1px;
    height: 0;
    padding-top: 40%;
  }

  .card_row {
    margin-bottom: 2rem;
  }

  .card_big .title {
    margin-top: auto;
  }
}

@media (max-width: 991px) {
  .card_big>.cont::before {
    padding-top: 30%;
  }

  .card_row::after {
    content: "";
    display: block;
    clear: both;
  }

  .card_big>.cont {
    min-height: 0;
  }

  .card_big>.cont>.data {
    width: 100%;
    min-height: 0;
  }

  .card_big .title>a>span {
    height: 5.2em;
  }

  .header {
    padding-bottom: 10px !important;
  }
}

@media (min-width: 992px) {
  .card_row {
    display: flex;
    flex-wrap: wrap;
  }

  .corner::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) #fbfbfa rgba(255, 255, 255, 0);
  }

  .card_big>.cont::before {
    padding-top: 50%;
  }

  .card_big>.cover {
    transition: opacity 0.4s ease;
  }

  .card_row:hover .card_big>.cover {
    opacity: 0.55 !important;
  }

  .card_row:hover .card_big:hover>.cover {
    opacity: 0.75 !important;
  }

  .card_big .title>a>span {
    height: 7.8em;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .card_row>.card_big {
    float: left;
    max-width: 50%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .card_row>.card_big {
    max-width: 33.333333%;
    flex: 0 0 33.333333%;
  }

  .card_row .card_big:last-child {
    display: none;
  }
}

@media (min-width: 1200px) {
  .card_row>.card_big {
    max-width: 25%;
    flex: 0 0 25%;
  }

  .card_row .card_big:last-child {
    display: block;
  }
}

@media (min-width: 1440px) {
  .card_big>.cont {
    padding: 3rem;
  }
}

.heading .title {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .heading .title>button {
    border: 0 none;
    padding: 0;
    margin: 0;
    background: 0 0;
  }

  .heading .title>button::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .heading .title>button {
    display: none;
  }
}

@media (max-width: 575px) {
  .heading {
    margin-top: 2rem;
  }
}

@media (min-width: 500px) {
  .heading {
    margin-bottom: 1rem;
  }
}

@media (max-width: 499px) {
  .heading {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
  }

  .category-description {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
  }
}

.card_game,
.card_game_title {
  width: 100%;
}

.card_game_title {
  color: #343a40;
  position: relative;
}

.card_game_title .title {
  color: #fff;
  line-height: 1.2;
}

.card_game {
  position: relative;
  color: #fff;
}

.card_game a {
  color: inherit;
  text-decoration: none !important;
}

.card_game>.cover {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

.card_game>.cont .title a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

@media (max-width: 575px) {
  .card_game>.cont {
    max-width: 10rem;
  }

  .card_game>.cover {
    background-position: 100% 30%;
    background-size: auto 180%;
  }

  .card_game>.cont>.btn {
    display: none;
  }
}

@media (min-width: 576px) {
  .card_game>.cont {
    max-width: 200px;
  }

  .card_game>.cont .title {
    margin-bottom: 1rem;
  }

  .card_game_title {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .card_game::before {
    content: "";
    display: block;
    width: 1px;
    height: 0;
    padding-top: 60%;
    margin-left: -1px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .card_game {
    display: inline-block;
    max-width: 25%;
    vertical-align: top;
  }

  .card_game>.cont .title {
    height: 2.6em;
    overflow: hidden;
  }
}

@media (max-width: 499px) {

  .card_game,
  .card_game_title {
    padding: 1.5rem;
  }
}

@media (max-width: 339px) {

  .card_game,
  .card_game_title {
    padding: 1.5rem 0.75rem;
  }
}

@media (min-width: 500px) {

  .card_game,
  .card_game_title {
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  .card_game_title {
    max-width: 25%;
    flex: 0 0 25%;
    display: flex;
    align-items: flex-end;
  }

  .card_game {
    max-width: 18.75%;
    flex: 0 0 18.75%;
    display: flex;
    align-items: flex-end;
  }

  .card_game>.cover {
    transition: opacity 0.4s ease;
  }

  .card_row:hover .card_game>.cover {
    opacity: 0.45;
  }

  .card_row:hover .card_game:hover>.cover {
    opacity: 1;
  }

  .card_game:hover>.cont .btn {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.35);
  }
}

@media (min-width: 992px) {
  .colomns {
    display: flex;
  }

  .colomns>.content {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 52.25rem;
  }

  .colomns>.sidebar {
    width: 100%;
    max-width: 300px;
    flex: 0 0 300px;
    margin-left: 2rem;
  }

  .block>.banner {
    margin-bottom: 0;
  }

  .sticky {
    position: sticky;
    top: 7rem;
  }

  .banner~a.xxsmf {
    display: inline-block;
    margin-top: 0.5rem;
  }
}

@media (max-width: 991px) {

  .banner~a.xxsmf,
  .colomns>.sidebar {
    display: none;
  }
}

@media (min-width: 1200px) {
  .colomns>.sidebar {
    margin-left: 4rem;
  }
}

@media (min-width: 320px) {

  .banner,
  .block {
    margin-bottom: 2rem;
    min-width: 300px;
    min-height: 250px;
  }
}

@media (min-width: 960px) {

  .banner,
  .block {
    min-height: 175px;
  }
}

.banner,
.block {
  width: 100%;
}

.banner {
  text-align: center;
}

.banner img {
  max-width: 100%;
  vertical-align: top;
}

.post {
  position: relative;
}

.post_list .post {
  box-shadow: 0 0.25rem 1.5rem 1px rgba(0, 0, 0, 0.03);
  background-color: #fff;
  border-radius: 0.125rem;
  padding: 1.5rem;
  margin-top: 1rem;
}

.post_list .post:first-child {
  margin-top: 0 !important;
}

.post .cont {
  flex: 1 1 auto;
}

.post a {
  color: inherit !important;
}

.post .title {
  margin-bottom: 0;
}

.post .title>a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.post .img {
  width: 100%;
  background-color: #f8f9fa;
}

.img>.cover {
  width: 100%;
  padding-top: 66.5%;
  display: block;
}

@media (min-width: 500px) {
  .post .meta {
    margin-bottom: 0.25rem;
  }

  .post .img {
    max-width: 11rem;
    flex: 0 0 11rem;
    margin-right: 1.5rem;
    position: relative;
  }

  .post+.navigation {
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .post .title {
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  .post .meta {
    margin-bottom: 0.75rem;
  }

  .post .img {
    max-width: 13rem;
    flex: 0 0 13rem;
  }
}

@media (min-width: 992px) {
  .post {
    display: flex;
    align-items: flex-start;
  }

  .post .meta {
    margin-bottom: 0.75rem;
  }

  .post .cont {
    transition: padding-right 0.2s ease;
    padding-top: 0.5rem;
  }

  .post .title {
    transition: opacity 0.3s ease;
  }

  .post:hover .title {
    opacity: 0.8;
  }

  .post_list .post:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 0.25rem 1.5rem 1px rgba(0, 0, 0, 0.05);
  }
}

@media (min-width: 1200px) {
  .post .img {
    margin-right: 2rem;
    max-width: 15.75rem;
    flex: 0 0 15.75rem;
  }
}

@media (min-width: 500px) and (max-width: 991px) {
  .post .img {
    float: left;
  }

  .post .cont {
    display: table;
  }

  .post::after {
    clear: both;
    display: block;
    content: "";
  }
}

@media (max-width: 499px) {
  .post {
    padding: 1.5rem;
  }

  .post_list .post {
    margin-top: 0.5rem;
  }

  .post .cont {
    margin-top: 1.5rem;
  }

  .post .cont .meta {
    margin-bottom: 0.5rem;
    margin-top: -0.5rem;
  }

  .post .cont .title {
    margin: 0;
  }

  .post .img>.cover {
    padding-top: 50%;
  }
}

@media (min-width: 640px) {
  .post_view {
    background-color: #fff;
    box-shadow: 0 0.25rem 1.5rem 1px rgba(0, 0, 0, 0.03);
    border-radius: 0.125rem;
    padding: 2rem;
  }
}

.post_view img {
  max-width: 100%;
}

.post_view~.sep_line {
  margin: 2rem 0;
}

.post_view .post_left {
  display: none;
}

.post_left {
  padding-top: 0.25rem;
}

.post_mid>.img,
.post_mid>header {
  margin-bottom: 1.5rem;
}

.post_mid>.img {
  text-align: center;
  vertical-align: top;
}

.next_post a {
  text-decoration: none !important;
  color: inherit;
}

.heading_sep {
  border-top: 2px solid;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.related>.title {
  margin-bottom: 1.5rem;
}

@media (max-width: 499px) {
  .post_view {
    padding: 0 1.5rem;
  }

  .post_mid>.img,
  .post_mid>header,
  .related>.title {
    margin-bottom: 1.5rem;
  }

  .related {
    margin-top: 2rem;
  }

  .related>.title {
    padding: 0 1.5rem;
  }
}

@media (min-width: 500px) {
  .post_mid>.text {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .post_view {
    margin-bottom: 2rem;
  }

  .no-toolbar .post_view {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .post_view {
    margin-bottom: 3.5rem;
  }

  .related>.title {
    margin-top: 3.5rem;
  }
}

@media (min-width: 992px) {
  .post_view {
    display: flex;
  }

  .post_view .post_left {
    display: block;
    width: 100%;
    flex: 0 0 10%;
    max-width: 10%;
  }

  .post_view .post_mid {
    width: 100%;
    flex: 1 1 80%;
    max-width: 80%;
  }
}

@media (min-width: 1200px) {
  .post_view .post_left {
    flex: 0 0 15%;
    max-width: 15%;
  }

  .post_view .post_mid {
    flex: 1 1 70%;
    max-width: 70%;
  }
}

.cd-faq-group {
  list-style: none;
  padding: 0;
  margin-top: 0;
}

.cd-faq-group>li {
  border-top: 1px solid #edf0f2;
}

.cd-faq-group>li>.cd-faq-trigger,
.cd-faq-group>li>h3 {
  font-weight: 700;
}

.cd-faq-content {
  margin-top: 0.5rem;
}

.cd-faq-content p {
  margin: 0;
}

@media (max-width: 499px) {
  .cd-faq-group>li {
    padding: 1.5rem 0;
  }
}

@media (min-width: 500px) {
  .cd-faq-group>li {
    padding: 2rem 0;
  }
}

.mail_feedback {
  border: 1px solid #edf0f2;
  padding: 5%;
  border-radius: 1rem;
  text-align: center;
  margin-top: 2rem;
}

.app_list {
  margin-bottom: 0;
}

.app_list::after,
.app_list>#dle-content::after,
.item_app .meta::after,
.item_app::after {
  clear: both;
  content: "";
  display: block;
}

.app_list>#dle-content {
  min-width: 100%;
  width: 100%;
}

.app_list .searchbox {
  width: 100%;
  clear: both;
}

.app_list .item,
.app_list>#dle-content .item {
  float: left;
  width: 100%;
}

.item_app {
  padding: 1rem;
  position: relative;
  border-radius: 10px !important;
}

.item_app a {
  color: inherit;
  text-decoration: none !important;
}

.item_app .img {
  overflow: hidden;
  border-radius: 1rem;
}

.item_app .img img {
  display: block;
}

.item_app .name {
  display: block;
  font-weight: 700;
}

.item_app .name>a>span {
  display: block;
  overflow: hidden;
  line-height: 1.4em;
  max-height: 2.8em;
}

.item_app .name>a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.item_app .meta {
  height: 1.5rem;
}

.item_app.mod .img::before,
.item_app.mod .meta::before {
  font-weight: 700;
  line-height: 1rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(220, 225, 229, 0.2);
  margin-left: auto;
  font-size: 0.75rem;
}

.item_app .meta .rate_star {
  margin-left: -0.25rem;
}

.item_app .unit-rating {
  width: 6.25rem;
  height: 1.25rem;
}

.app_list {
  margin: -0.75rem;
}

.app_list .item,
.app_list .searchbox,
.app_list>#dle-content .item {
  padding: 0.75rem;
}

.app_list .item_app {
  box-shadow: 0 0.25rem 1.5rem 1px rgba(0, 0, 0, 0.03);
  background-color: #fff;
  border-radius: 0.125rem;
}

@media (min-width: 576px) {

  .app_list .item,
  .app_list>#dle-content .item {
    max-width: 50%;
  }
}

@media (max-width: 639px) {
  .app_list {
    margin: -0.25rem;
  }

  .app_list .item,
  .app_list .searchbox,
  .app_list>#dle-content .item {
    padding: 0.25rem;
  }
}

@media (max-width: 499px) {
  .item_app {
    padding: 1rem !important;
  }
}

@media (max-width: 819px) {
  .app_list .item_app .img {
    margin-bottom: 1rem;
  }

  .item_app .img {
    position: relative;
    z-index: 1;
  }

  .item_app .img img {
    width: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }

  .item_app .img::after {
    display: block;
    content: "";
    padding-top: 100%;
    width: 1px;
    margin-left: -1px;
  }

  .item_app .data {
    width: 100%;
    min-width: 0;
    font-size: 0.8125rem;
    min-width: 0;
    height: 2.5rem;
  }

  .item_app .data .developer,
  .item_app .name>a>span {
    overflow: hidden;
    position: relative;
  }

  .item_app .data .developer {
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .item_app .name {
    margin-bottom: 0.25rem;
  }

  .item_app .meta {
    margin-top: 0.5rem;
  }

  .app_list .item_app.mod .img::before {
    content: "MOD";
    position: absolute;
    right: 0.25rem;
    bottom: 0.25rem;
    border-radius: 0.75rem;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
  }
}

@media (min-width: 820px) {
  .item_app .img {
    float: left;
    width: 8rem;
    height: 8rem;
  }

  .item_app .img img {
    width: auto;
    height: 100%;
  }

  .item_app .cont {
    margin-left: 9.5rem;
  }

  .item_app .meta {
    margin-top: auto;
  }

  .item_app .name {
    margin-bottom: 0.5rem;
  }

  .item_app.mod .meta .rate_star {
    float: left;
    margin-top: 0.125rem;
  }

  .item_app.mod .meta::before {
    float: right;
    content: "MOD";
    border-radius: 0.75rem;
  }
}

@media (min-width: 820px) and (max-width: 1069px),
(max-width: 575px) {

  .app_list .item,
  .app_list>#dle-content .item {
    max-width: 50%;
  }
}

@media (min-width: 1070px) {
  .item_app {
    transition: box-shadow 0.15s ease-in-out;
  }

  .item_app:hover {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 0.25rem 1.5rem 1px rgba(0, 0, 0, 0.05);
  }
}

@media (min-width: 1070px) and (max-width: 1199px) {
  .item_app .img {
    width: 6.25rem;
    height: 6.25rem;
  }

  .item_app .data {
    height: 4.75rem;
  }

  .item_app .cont {
    margin-left: 7.75rem;
  }
}

@media (min-width: 576px) and (max-width: 1199px) {
  .item_app .developer {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 499px) {
  .content {
    overflow: hidden;
    padding-bottom: 1px;
  }
}

.app_view-first .img {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 1.5rem 2rem -1rem rgba(0, 0, 0, 0.1607843137);
  background-color: #fff;
  position: relative;
}

.app_view-first .img>img {
  display: block;
  width: auto;
  height: 100%;
  border-radius: inherit;
}

.label-offline {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  color: #fff;
  line-height: 12px;
  padding: 4px 10px;
  border-radius: inherit;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  text-align: right;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #68cb5b;
  background: linear-gradient(90deg, #22c7b6 0, #68cb5c 100%);
}

.label-offline>span {
  display: block;
}

.app_view_pad .description,
.app_view_pad .rate {
  margin-top: 1.5rem;
}

.app_view_pad .spec {
  color: #343a40;
  margin-bottom: -0.125rem;
}

.app_view_pad .spec>li {
  padding-top: 0.195rem;
  padding-bottom: 0.195rem;
}

@media (min-width: 768px) {
  .app_view_wrp {
    background-color: #fff;
    box-shadow: 0 0.25rem 1.5rem 1px rgba(0, 0, 0, 0.03);
    border-radius: 0.125rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .app_view_pad {
    position: relative;
  }
}

@media (max-width: 767px) {
  .app_view_wrp {
    position: relative;
    padding-bottom: 11.25rem;
  }

  .app_view_pad {
    margin-bottom: 2rem;
  }

  .app_view_pad::after {
    content: "";
    display: block;
    clear: both;
  }

  .app_view_pad>.rate {
    position: absolute;
    bottom: 0;
    height: 11.25rem;
    width: 100%;
  }
}

@media (min-width: 500px) and (max-width: 767px) {
  .app_view_wrp {
    padding-bottom: 6.5rem;
    padding: 0 25px;
  }

  .app_view_pad>.rate {
    height: 6.5rem;
  }
}

.spec {
  list-style: none;
  padding: 0;
}

.spec>li {
  display: inline-block;
  padding-left: 1.75rem;
  margin-right: 1.5rem;
}

.spec>li::after {
  clear: both;
  display: block;
  content: "";
}

.spec>li a {
  color: inherit;
  text-decoration: none !important;
}

.spec>li:last-child {
  margin-right: 0;
}

.spec>li .spec_icon>svg {
  margin-top: -0.125rem;
  margin-left: -1.75rem;
  float: left;
  width: 24px;
  height: 24px;
}

.spec>li .asu {
  display: none;
}

.spec>li .asu>svg {
  margin-left: 0.25rem;
  margin-top: -0.02rem;
  width: 24px;
  height: 24px;
  float: right !important;
}

.app_view-first .spec_addon>.btn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app_view_pad .description {
  line-height: 1.5rem;
}

.app_view_pad .description .spoiler-btn {
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

.app_view_pad .description .spoiler-btn {
  width: 100%;
  padding: 10px 0;
}

.spoiler.open {
  max-height: none;
  overflow: visible;
}

.spoiler-btn>svg {
  vertical-align: middle;
  margin: -0.125rem 0.5rem 0 0;
}

.spoiler-btn-o {
  display: inline;
}

.spoiler-btn-h {
  display: none;
}

.spoiler.open~.spoiler-btn .spoiler-btn-h {
  display: inline;
}

.spoiler.open~.spoiler-btn .spoiler-btn-o {
  display: none;
}

.spoiler.open~.spoiler-btn>svg {
  transform: rotate(180deg);
}

.app-faq {
  margin-top: 2rem;
}

.app-faq-heading {
  border-top: 1px solid #e2e5e2;
  padding: 1rem 0;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.5rem;
}

.app-faq-heading>svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  transition: transform 0.2s, color 0.2s;
}

.app-faq-heading:hover>svg {
  transform: scale(1.05);
}

.app-faq-list {
  margin-bottom: 0;
  padding-left: 2.25rem;
  list-style: none !important;
}

.app-faq-list>li+li {
  margin-top: 1.5rem;
}

.app-faq-title {
  font-weight: 700;
  line-height: inherit;
  margin-bottom: 0.25em;
  font-size: inherit;
  position: relative;
}

.app-faq-title::after {
  content: "";
  position: absolute;
  left: -2.25em;
  top: 0.45em;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  margin-left: 0.4375rem;
}

.open>.app-faq-heading>svg {
  color: #8a8a8b;
  transform: rotate(45deg);
}

.open>.app-faq-heading:hover>svg {
  transform: scale(1.05) rotate(45deg);
}

.open>.app-faq-list {
  display: block !important;
}

@media (max-width: 767px) {
  .app_view-first {
    margin-bottom: 1rem;
    padding-left: 11.5rem;
  }

  .app_view-first::after {
    content: "";
    display: block;
    clear: both;
  }

  .app_view-first>.img {
    float: left;
    margin-left: -11.5rem;
  }

  .app_view-first>.cont {
    display: table;
    width: 100%;
  }

  .app_view-first>.inline {
    display: inline-block !important;
  }

  .app_view-first .spec>li {
    margin-right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .spec>li {
    display: block;
  }

  .spec_cat {
    display: none !important;
  }

  .app_view_pad>.title {
    margin-bottom: 1.5rem;
  }

  .app_view_pad .rate {
    background-color: #edefec;
    padding: 1.5rem;
  }

  .app_view_pad .rate .unit-rating {
    width: 17.5rem;
    height: 3.5rem;
  }

  .app_view_pad .rate .rating {
    margin-left: -0.375rem;
  }

  .app_view_pad .rate .unit-rating li a:hover,
  .app_view_pad .rate .unit-rating li.current-rating {
    background-color: #edefec;
  }

  .version_upload {
    display: block !important;
    font-size: 0.95rem;
    border-top: 1px solid #edeff1;
    color: #343a40;
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .version_upload svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    margin-right: 0.25rem;
  }
}

@media (min-width: 500px) {
  .app_view-first .img {
    width: 11.5rem;
    height: 11.5rem;
  }
}

@media (min-width: 500px) and (max-width: 767px) {
  .app_view-first>.cont {
    padding-left: 2rem;
  }

  .app_view_pad .rate::after {
    clear: both;
    display: block;
    content: "";
  }

  .app_view_pad .rate .rating {
    float: left;
  }

  .app_view_pad .rate .rate_num {
    float: right;
    margin-top: 1rem;
  }

  .app_view-first .spec>li {
    margin-top: 0.5rem;
  }

  .app_view-first .spec {
    height: 8.125rem;
  }
}

@media (min-width: 768px) {
  .app_view-first .img {
    left: 0;
    top: 0;
    position: absolute;
    width: 10rem;
    height: 10rem;
  }

  .app_view_pad .spec {
    margin-top: 0.5rem;
    font-weight: 700;
  }

  .app_view_pad .developer {
    order: 0;
    margin-top: 0.5rem;
  }

  .app_view_pad .rate {
    order: 1;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
  }

  .app_view_pad .rate .rating {
    margin-left: -3px;
  }

  .app_view-first {
    order: 2;
  }

  .app_view_pad .description {
    order: 3;
  }

  .app_view_pad .app-faq {
    order: 4;
  }

  .app_view_pad .share {
    order: 5;
  }

  .app_view_pad .rate .rate_num {
    font-size: 0.875rem;
    margin-left: 0.5rem;
    margin-top: 0.125rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .app_view-first .spec_addon {
    padding: 0.5rem;
    border-radius: 3rem;
    margin-top: 1.5rem;
    background-color: rgba(220, 225, 229, 0.3);
  }

  .app_view-first .spec_addon::after {
    clear: both;
    display: block;
    content: "";
  }

  .app_view-first .spec_addon>.btn {
    display: inline-block;
    vertical-align: middle;
    font-size: 0.875rem;
    margin-right: 1rem;
  }

  .app_view-first .spec_addon>p {
    display: inline !important;
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .app_view_pad {
    display: flex;
    flex-direction: column;
  }

  .i__more_c1,
  .i__more_c2,
  .i__more_c3 {
    transition: transform 0.15s ease-in-out;
  }

  .spoiler-btn:hover .i__more_c1,
  .spoiler-btn:hover .i__more_c3 {
    transform: translateY(-0.05rem);
  }

  .spoiler-btn:hover .i__more_c2 {
    transform: translateY(0.15rem);
  }
}

@media (min-width: 1025px) {
  .app_view-first .spec_addon {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 13rem;
    text-align: center;
    color: #343a40;
  }

  .app_view-first .spec_addon>.btn {
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
  }

  .app_view-first .spec_addon>p {
    max-width: 10rem;
    margin: 0 auto;
  }

  .app_view-first .spec_addon>p>i {
    display: block;
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .app_view-first .img {
    width: 11.5rem;
    height: 11.5rem;
  }
}

@media (max-width: 499px) {
  .app_view-first .spec_addon>.btn {
    white-space: nowrap;
  }

  .app_view-first {
    padding-left: 8.5rem;
  }

  .app_view-first .img {
    width: 8.5rem;
    height: 8.5rem;
    margin-left: -8.5rem;
  }

  .app_view-first>.cont {
    padding-left: 1.5rem;
  }

  .app_view-first .spec_addon .btn.btn-green {
    font-size: 0.875rem;
    line-height: 1.5rem;
    padding: 0.5rem 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }

  .app_view-first .spec {
    height: 6.125rem;
  }

  .app_view_pad {
    padding: 0 1.5rem;
  }

  .app_view_pad .rate {
    left: 0;
    right: 0;
  }

  .app_view_pad .rate .unit-rating {
    margin: 0 auto;
  }

  .app_view_pad .rate .rate_num {
    text-align: center;
    line-height: 1;
    margin-top: 1rem;
  }
}

@media (max-width: 339px) {
  .app_view_pad {
    padding: 0 0.75rem;
  }
}

.app_screens {
  position: relative;
}

.app_screens .sep_line {
  margin-bottom: 2rem;
}

.app_screens_in {
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 500px) {
  .app_screens {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .app_screens .sep_line {
    margin-top: 2rem;
  }

  .app_screens .section-title {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 768px) {
  .app_screens {
    margin-bottom: -2rem;
  }
}

@media (min-width: 992px) {
  .app_screens_in::-webkit-scrollbar {
    width: 16px;
    background-color: #fff;
  }

  .app_screens_in::-webkit-scrollbar-thumb {
    background-color: #e2e5e2;
    border-radius: 16px;
    border: 3px solid #fff;
  }

  .app_screens_in::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 16px;
    border: 3px solid #fff;
  }
}

.app_screens_list {
  white-space: nowrap;
  margin: 0;
  padding-bottom: 2rem;
}

.app_screens_list a {
  display: inline-block;
  vertical-align: bottom;
  background-color: #fff;
  border-radius: 0.5rem;
  margin-left: 1rem;
}

.app_screens_list a:first-child {
  margin-left: 0;
}

.app_screens_list a img {
  display: block;
  width: auto;
  border-radius: inherit;
}

.app_screens_list::after,
.app_screens_list::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
}

.app_screens_list::after {
  margin-left: -0.3em;
}

.app_screens_list::before {
  margin-right: -0.3em;
}

.xfieldimagegallery {
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.xfieldimagegallery>li {
  height: auto;
  display: inline-block;
}

.xfieldimagegallery>li img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 500px) {
  .app_screens_list a {
    height: 300px;
  }

  .app_screens_list a img {
    height: 100% !important;
  }

  .app_screens_list a:last-child {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .app_screens {
    overflow: hidden;
  }

  .app_screens_list {
    padding-bottom: 4rem;
  }

  .app_screens_in {
    margin-bottom: -2rem;
  }
}

@media (max-width: 499px) {
  .app_screens .section-title {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
    text-transform: uppercase;
  }

  .app_screens_list a {
    max-width: 80vw;
  }

  .app_screens_list a img {
    width: 100%;
    height: auto !important;
    max-height: 400px;
    box-shadow: 0 0.25rem 1.25rem -0.25rem rgba(0, 0, 0, 0.1);
  }

  .app_screens_list::after,
  .app_screens_list::before {
    height: 1.5rem;
    width: 1.5rem;
  }
}

@media (max-width: 339px) {
  .app_screens .section-title {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .app_screens_list::after,
  .app_screens_list::before {
    height: 0.75rem;
    width: 0.75rem;
  }

  .app_screens_list a {
    margin-left: 0.75rem;
  }
}

.box_shadow {
  background-color: #fff;
  box-shadow: 0 0.25rem 1.5rem 1px rgba(0, 0, 0, 0.03);
  border-radius: 0.125rem;
  position: relative;
  z-index: 1;
}

.box_download .tabs {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 0.5rem;
}

.tabs {
  display: flex;
}

ul.tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tabs>li>a {
  padding: 0 1rem;
  display: block;
  color: inherit !important;
  opacity: 0.5;
  text-decoration: none !important;
}

.tabs>li>a>span {
  display: block;
  line-height: 1.5rem;
  padding: 1rem 0;
  transition: box-shadow 0.15s ease-in-out;
}

.tabs>li>a.active {
  opacity: 1 !important;
}

@media (min-width: 992px) {
  .tabs>li>a:hover {
    opacity: 0.6;
  }
}

@media (min-width: 500px) {

  .box_download .cont,
  .box_download .foot {
    padding: 2rem;
  }

  .download-box {
    padding: 0.5rem;
  }

  .box_download .cont~.foot,
  .box_download .tabs~.cont {
    margin-top: -2rem;
  }
}

@media (max-width: 499px) {
  .box_download .tabs {
    justify-content: center;
  }

  .box_download .cont,
  .box_download .foot {
    padding: 1.5rem;
  }

  .box_download .cont~.foot,
  .box_download .tabs~.cont {
    margin-top: -1.5rem;
  }
}

@media (max-width: 339px) {

  .box_download .cont,
  .box_download .foot {
    padding: 0.75rem;
  }

  .box_download .cont~.foot,
  .box_download .tabs~.cont {
    margin-top: -0.75rem;
  }
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.tab-pane:first-child {
  display: block;
}

.download_line {
  margin-top: 1rem;
  padding: 0.5rem;
  display: block;
  text-decoration: none !important;
}

.download_line * {
  cursor: pointer;
  line-height: 1.5rem;
}

.download_line:first-child {
  margin-top: 0;
}

.download_line>.size {
  font-style: normal;
}

.download_line>div>i {
  float: left;
  margin-left: -2rem;
  margin-top: -0.125rem;
}

.download_line.light {
  color: inherit !important;
  background-color: rgba(220, 225, 229, 0.3);
}

.download_line.green {
  color: #fff !important;
}

.download_line.brand {
  color: #121416;
  background-color: #fc0;
}

.download_line.brand:hover {
  background-color: #ebbc00;
}

.download_line.brand>div>i>svg {
  margin: -0.25rem;
}

@media (min-width: 992px) {
  .download_line {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1.125rem;
    border-radius: 2rem;
    transition: background-color 0.15s ease-in-out;
  }

  .download_line>div {
    padding: 0.75rem;
    padding-left: 2.75rem;
    flex: 1 1 auto;
    display: flex;
    /* Add Flexbox to control alignment */
    align-items: center;
    /* Vertically center content */
  }
}

@media (max-width: 991px) {
  .download_line {
    border-radius: 0.75rem;
    padding: 1rem;
  }

  .download_line>div {
    padding-left: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }

  .download_line>.size {
    display: block;
    margin-left: 2rem;
  }

  .download_line.light>.size {
    color: #363f46;
  }
}

@media (max-width: 575px) {
  .download_line>div {
    line-height: normal;
  }

  .download_line>.size {
    display: block;
    margin-left: 2rem;
    font-size: 0.8125rem;
  }

  .hide-dwntext {
    display: none;
  }
}

@media (max-width: 339px) {
  .download_line {
    margin-top: 0.75rem;
  }
}

.cache {
  display: flex;
}

.cache>.b-yellow {
  border-radius: 50%;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cache>.b-yellow svg {
  width: 1.5rem;
  /* Match the SVG size to fit within the padded container */
  height: 1.5rem;
  margin-right: 0;
  /* Override global margin-right to prevent offset */
}

.novirus>.c-green {
  border-radius: 50%;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.novirus>.c-green svg {
  width: 1.5rem;
  /* Match the SVG size to fit within the padded container */
  height: 1.5rem;
  margin-right: 0;
  /* Override global margin-right to prevent offset */
}

.cache>.b-yellow>svg {
  display: block;
}

@media (min-width: 500px) {
  .cache>.b-yellow {
    margin-right: 1rem;
  }
}

@media (max-width: 499px) {
  .cache {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .cache>.b-yellow {
    margin-bottom: 1rem;
  }

  .rate_num .fbold {
    font-size: 50px;
  }
}

.box_grey {
  background-color: rgba(237, 239, 236, 0.6509803922);
  padding: 2rem;
  border-radius: 50px;
}

@media (max-width: 499px) {
  .box_grey {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media (max-width: 339px) {
  .box_grey {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

.app_moreinfo_item>.smf {
  margin-bottom: 0;
}

.app_moreinfo_item>.fbold {
  margin-bottom: 0.5rem;
}

.app_moreinfo_item ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.app_moreinfo_item .spec>li {
  padding-left: 0;
  display: inline-block;
}

@media (max-width: 991px) {
  .app_moreinfo .grid-2:last-child {
    margin-top: 1rem;
  }
}

@media (max-width: 575px) {
  .app_moreinfo {
    text-align: center;
  }

  .app_moreinfo .spec {
    text-align: left;
  }

  .app_moreinfo .spec>li {
    width: 49%;
    max-width: 50%;
    padding-right: 1rem;
    margin: 0 0 1rem 0;
    font-size: 0.8125rem;
  }

  .app_moreinfo_item>i>svg {
    margin-bottom: 1rem;
  }

  .app_moreinfo_item.novirus>i {
    border-radius: 50%;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    vertical-align: top;
  }
}

.unit-rating {
  width: 8.75rem;
  height: 1.75rem;
  font-size: 1px;
}

.unit-rating {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23CACEC9' d='M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z'/%3E%3C/svg%3E");
}

.unit-rating,
.unit-rating li a:hover,
.unit-rating li.current-rating {
  background-size: auto 100%;
}

.unit-rating {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.unit-rating li {
  text-indent: -9000px;
  padding: 0;
  margin: 0;
  float: left;
  width: 20%;
  height: 100%;
}

.unit-rating li a {
  width: 20%;
  height: 100%;
  text-decoration: none !important;
  text-indent: -9000px;
  z-index: 17;
  position: absolute;
}

.unit-rating li a:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2368CB5B' d='M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z'/%3E%3C/svg%3E");
  z-index: 2;
  left: 0;
}

.unit-rating a.r1-unit {
  left: 0;
}

.unit-rating a.r1-unit:hover {
  width: 20%;
}

.unit-rating a.r2-unit {
  left: 20%;
}

.unit-rating a.r2-unit:hover {
  width: 40%;
}

.unit-rating a.r3-unit {
  left: 40%;
}

.unit-rating a.r3-unit:hover {
  width: 60%;
}

.unit-rating a.r4-unit {
  left: 60%;
}

.unit-rating a.r4-unit:hover {
  width: 80%;
}

.unit-rating a.r5-unit {
  left: 80%;
}

.unit-rating a.r5-unit:hover {
  width: 100%;
}

.unit-rating li.current-rating {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23B0BAAD' d='M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z'/%3E%3C/svg%3E");
  position: absolute;
  height: 100%;
  text-indent: -9000px;
  z-index: 1;
}

.unit-rating li a:hover,
.unit-rating li.current-rating {
  background-color: #fff;
}

.modal_search .unit-rating li a:hover,
.modal_search .unit-rating li.current-rating {
  background-color: #fafafa;
}

.navigation {
  clear: both;
}

.navigation_ext {
  background-color: #fff;
  box-shadow: 0 0.25rem 1.5rem 1px rgba(0, 0, 0, 0.03);
}

.navigation_ext>.pages {
  overflow-x: auto;
  margin-top: -1px;
}

.navigation_ext>.pages a,
.navigation_ext>.pages span,
.navigation_ext>a,
.navigation_ext>span {
  color: inherit;
  padding: 0.5rem 1rem;
  line-height: 1.5rem;
  height: 2.5rem;
  text-decoration: none;
}

.navigation_ext>a,
.navigation_ext>span {
  margin-top: -1px;
}

.navigation_ext>a svg,
.navigation_ext>span svg {
  vertical-align: top;
  width: 1.5rem;
  height: 1.5rem;
}

.navigation_ext>span svg {
  opacity: 0.5;
}

@media (min-width: 992px) {
  .navigation_ext {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .navigation_ext>.pages {
    display: flex;
    min-width: 0;
    flex: 1;
    justify-content: center;
    align-items: center;
  }

  .navigation_ext a {
    transition: color 0.15s ease-in-out;
  }
}

@media (max-width: 991px) {
  .navigation_ext {
    position: relative;
    height: 2.5rem;
    padding: 0 4rem;
  }

  .navigation_ext>.pages {
    text-align: center;
    white-space: nowrap;
  }

  .navigation_ext>.pages>* {
    display: inline-block;
    vertical-align: top;
  }

  .navigation_ext>a,
  .navigation_ext>span {
    position: absolute;
    top: 0;
    width: 4rem;
    height: 2.5rem;
    text-align: center;
  }

  .navigation_ext>a:last-child,
  .navigation_ext>span:last-child {
    right: 0;
  }

  .navigation_ext>a:first-child,
  .navigation_ext>span:first-child {
    left: 0;
  }
}

.navigation_ext> :first-child {
  border-right: 1px solid #e2e5e2;
}

.navigation_ext> :last-child {
  border-left: 1px solid #e2e5e2;
}

.navigation_ext>.pages span {
  background-color: rgba(226, 229, 226, 0.2);
}

.navigation_ext>.pages span.nav_ext {
  background-color: transparent !important;
}

.navigation_in::after {
  clear: both;
  display: block;
  content: "";
}

.navigation_in>button.btn {
  margin-right: -1rem;
}

.navigation_in>.nav_more {
  float: left;
}

#navcollapse_btn {
  float: right;
}

@media (max-width: 499px) {
  .navigation {
    padding: 1.5rem;
  }

  .navigation_ext {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 500px) {
  .navigation_in {
    margin-top: 2rem;
  }
}

.item~.navigation {
  padding: 0 0.75rem;
  padding-top: 1.25rem;
}

.item~.navigation .navigation_ext {
  margin-bottom: 2rem;
}

.item~.navigation .navigation_in {
  padding-top: 0 !important;
}

.navigation .collapse {
  display: none;
}

.navigation.open .collapse {
  display: block;
}

.navigation.open .navigation_in>button.btn>.arrow_drop::after {
  transform: rotate(180deg);
}

.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #fff;
  display: none;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.modal_search {
  background-color: rgba(244, 245, 243, 0.9803921569);
}

.modal .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  opacity: 0;
  z-index: 1;
}

.modal_content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
}

.modal_wrap {
  margin: 0 auto;
  width: 100%;
}

.modal .btn-close,
.modal_catmenu,
.qsearch_form {
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.modal_catmenu,
.qsearch_form {
  transform: translateY(30%);
  opacity: 0;
  padding: 4rem 0;
}

ul.modal_catmenu {
  list-style: none;
  margin: 0;
}

.modal_catmenu a {
  display: block;
  color: #363f46;
  text-decoration: none;
  font-weight: 400;
}

.modal_catmenu a.active {
  font-weight: 700;
  cursor: default;
}

@media (min-width: 576px) {
  .modal_wrap {
    max-width: calc(848px + 2rem);
    padding: 0 2rem;
  }

  .modal_catmenu a {
    padding: 0.2em 0;
    padding-left: 4rem;
    font-size: calc(1rem + 1vw);
  }

  .modal_catmenu a.active::before {
    transform: translateX(0) !important;
    opacity: 1 !important;
  }

  .modal_catmenu a::before {
    content: "";
    float: left;
    margin-left: -3rem;
    margin-top: 0.7em;
    width: 1.5rem;
    height: 0.25rem;
    transform: translateX(2rem);
    opacity: 0;
    background-color: #b7bfc6;
    transition: transform 0.2s ease, opacity 0.1s ease;
  }
}

@media (min-width: 992px) {

  .modal_catmenu,
  .qsearch_form {
    padding: 5rem 0;
  }

  .modal_catmenu a:hover::before {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 575px) {
  .modal_wrap {
    max-width: calc(848px + 1rem);
    padding: 0 1rem;
  }

  .modal_catmenu a {
    font-size: 1.25rem;
    padding: 0.75rem 2.5rem;
    line-height: 1.5rem;
    height: 3rem;
  }
}

@media (max-width: 499px) {
  .modal_catmenu a {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.modal.open {
  display: block;
}

@media (min-width: 992px) {

  html.mdl,
  html.mdl .header,
  html.qs,
  html.qs .header {
    padding-right: 16px;
  }
}

html.mdl,
html.qs {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

html.mdl .modal.open,
html.qs .modal.open {
  opacity: 1;
}

html.mdl .modal.open .btn-close,
html.mdl .modal.open .modal_catmenu,
html.qs .modal.open .btn-close,
html.qs .modal.open .qsearch_form {
  transform: translateY(0);
  opacity: 1;
}

.search_field {
  position: relative;
}

.search_field>input {
  display: block;
  width: 100%;
  outline: 0 !important;
  border-radius: 0.125rem;
  background-color: #fff;
  border: 0 none;
  box-shadow: 0 0.5rem 1.375rem 0 rgba(0, 0, 0, 0.07);
}

.search_field>button {
  position: absolute;
  right: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  margin: 0;
  border: 0 none;
  background: 0 0;
}

.search_field>button>svg {
  width: 2rem;
  height: 2rem;
  display: block;
}

.qsearch_list .item {
  padding: 0 1rem;
  position: relative;
}

.qsearch_list .item .item_app {
  padding: 1rem 0;
  position: static;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
}

.qsearch_list .item_app .img {
  width: 4rem;
  height: 4rem;
  float: left;
}

.qsearch_list .item_app .cont {
  margin-left: 5rem;
}

.qsearch_list .item_app .meta {
  height: 1.25rem;
}

.qsearch_list .item_app .meta::after,
.qsearch_list .item_app.mod .meta::before {
  display: none;
}

.qsearch_list .item_app .cont .data {
  height: auto;
  margin-right: 2rem;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.qsearch_list .item_app .cont .data::after {
  content: "";
  width: 1px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin-right: -1px;
  background-color: #fafafa;
  box-shadow: 0 0 1rem 1rem #fafafa;
}

@media (max-width: 819px) {
  .qsearch_list .item_app .meta {
    margin-top: 0.125rem;
  }
}

@media (min-width: 820px) {
  .qsearch_list .item_app .cont {
    position: relative;
    margin-top: 0.5rem;
    padding-right: 7.5rem;
  }

  .qsearch_list .item_app .meta {
    position: absolute;
    right: 0;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
}

@media (min-width: 576px) {
  .search_field>input {
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding: 1.75rem 2rem;
    padding-right: 5.25rem;
    height: 5.25rem;
    border-radius: 50px;
  }

  .search_field>button {
    right: 1.125rem;
  }

  .qsearch_list {
    padding: 1rem;
  }

  .qsearch_more {
    margin-top: 1rem;
  }
}

@media (min-width: 992px) {
  .search_field>button {
    transition: color 0.2s linear;
  }
}

@media (max-width: 575px) {
  .search_field>button {
    right: 0.5rem;
  }

  .search_field>input {
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 1.25rem;
    padding-right: 4rem;
    height: 4rem;
    border-radius: 50px;
  }

  .qsearch_list {
    margin-top: 1rem;
  }

  .qsearch_more {
    margin-top: 1.5rem;
  }
}

@media (min-width: 576px) {
  .searchbox .box_grey {
    padding: 1.5rem;
  }

  .searchbox .box_grey>.uppercase {
    margin-top: 1.5rem;
  }
}

@media (max-width: 575px) {
  .searchbox .box_grey {
    padding: 1rem;
  }

  .searchbox .box_grey>.uppercase {
    margin-top: 1rem;
  }
}

.ui-widget-overlay {
  background: #000;
  opacity: 0.5;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: fixed;
}

.ui-helper-clearfix:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
}

.ui-helper-clearfix {
  display: inline-block;
}

* html .ui-helper-clearfix {
  height: 1%;
}

.ui-helper-clearfix {
  display: block;
}

.ui-dialog {
  text-align: left;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 420px;
  border-radius: 2px;
  box-shadow: 0 0.5rem 2.5rem -0.5rem rgba(0, 0, 0, 0.3);
  border: 1px solid #e6e6e6;
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #fff;
  background-clip: padding-box;
}

.ui-dialog-titlebar {
  padding: 1.25rem;
  position: relative;
  border-bottom: 1px solid #edeff1;
}

.ui-dialog-title {
  float: left;
  font-weight: 700;
  font-size: 1em;
}

.ui-dialog-titlebar-close {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  margin-top: -1.5rem;
  height: 3rem;
  width: 3rem;
  padding: 0.75rem;
  border: 0 none !important;
}

.ui-dialog-titlebar-close .ui-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z' fill='%23343a40'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-size: 100% auto;
  opacity: 0.5;
}

.ui-show {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.dle-alert {
  padding: 1.25rem;
}

.ui-button {
  float: right;
  font-weight: 700;
  margin-left: 3px;
}

.ui-dialog-titlebar-close:hover .ui-icon {
  opacity: 1;
}

.ui-icon {
  overflow: hidden;
  text-indent: -9999px;
}

.ui-dialog-content {
  padding: 1.25rem;
  overflow: auto;
  position: relative;
  zoom: 1;
}

.ui-dialog-content h2 {
  display: inline;
  font-size: var(--font-size-h2);
  font-weight: 700;
}

.ui-dialog .ui-dialog-buttonpane {
  padding: 1.25rem;
  text-align: center;
  border-top: 1px solid #eceded;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-helper-hidden-accessible {
  display: none;
}

.ui-front {
  z-index: 1000;
}

.ui-button-icon-only {
  overflow: hidden;
  text-indent: -9999px;
}

.share {
  margin-top: 2rem;
  height: 3.5rem;
  color: #343a40;
}

.share .share-box {
  box-shadow: 0 0 0 1px #e2e5e2;
  width: 100%;
}

.share .share-box::after {
  clear: both;
  display: block;
  content: "";
}

.share .share-box>a {
  float: left;
  width: 100%;
  max-width: 25%;
  height: 3.5rem;
  padding: 1rem;
  text-align: center;
  border-left: 1px solid #e2e5e2;
  color: inherit !important;
}

.share .share-box>a:first-child {
  border-left-width: 0;
}

@media (min-width: 768px) {
  .share .share-box {
    max-width: 340px;
  }
}

@media (min-width: 992px) {
  .share .share-box>a:hover {
    box-shadow: inset 0 -4rem 0 0 rgba(226, 229, 226, 0.2);
  }
}

.btn,
.ui-button {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none !important;
  outline: 0 !important;
  color: inherit;
  background-color: rgba(255, 255, 255, 0);
  border: 0 none;
  padding: 0.5rem 1rem;
  line-height: 1.5rem;
  border-radius: 1.5rem;
  cursor: pointer;
}

.btn-sm {
  line-height: 1.25rem;
  padding: 0.375rem 0.75rem;
}

.btn-lg {
  line-height: 1.5rem;
  padding: 0.5rem 1.25rem !important;
}

@media (prefers-reduced-motion: reduce) and (max-width: 991px) {
  .btn {
    transition: none;
  }
}

.btn.btn-dark,
.ui-button {
  background-color: #121416;
  color: #fff;
  opacity: 1 !important;
}

.btn.btn-green {
  color: #fff;
  opacity: 1 !important;
}

.btn.btn-orange {
  background-color: #f77a4c;
  color: #fff;
  opacity: 1 !important;
  box-shadow: 0 0.5rem 1.5rem 0 rgba(247, 122, 76, 0.2);
}

.btn-border {
  border: 2px solid;
}

.btn-back {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  padding: calc(0.5rem - 2px);
  border-radius: 50%;
  border: 2px solid;
}

.btn-back svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.btn-close {
  border: 0 none;
  background: 0 0;
  color: inherit;
  width: 50px;
  height: 56px;
}

.btn-close>svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 992px) {

  .btn,
  .ui-button {
    transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }

  .btn:hover,
  .ui-button:hover {
    opacity: 0.8;
  }

  .btn.btn-dark:hover,
  .ui-button:hover {
    box-shadow: 0 0 0 0.25rem rgba(54, 63, 70, 0.15);
  }

  .btn.btn-dark:active,
  .ui-button:active {
    box-shadow: inset 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
  }

  .btn.btn-green:active {
    box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 121, 50, 0.15);
    transform: translateY(0);
  }

  .btn.btn-orange:hover {
    box-shadow: 0 0.5rem 1.5rem 0 rgba(247, 122, 76, 0.2), 0 0 0 0.25rem rgba(247, 122, 76, 0.15);
  }

  .btn.btn-orange:active {
    background-color: #c75b33;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 121, 50, 0.15);
    transform: translateY(0);
  }

  .btn-back {
    transition: box-shadow 0.2s ease;
  }

  .btn-back:hover {
    box-shadow: inset 0 0 0 0.25rem rgba(104, 203, 91, 0.4);
  }
}

.toolbar .minbtn {
  float: right;
  color: inherit !important;
  background-color: rgba(220, 225, 229, 0.3);
}

.toolbar .minbtn .switch {
  margin-left: -0.25rem;
  margin-right: 0.25rem;
}

.switch {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25rem;
  position: relative;
  border-radius: 0.5rem;
  width: 1.5rem;
  height: 1rem;
  background-color: #d55e5e;
}

.switch::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 0.125rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.15);
}

.switch.active::after {
  left: 100%;
  margin-left: -0.875rem;
}

.alert {
  background-color: #fcf6d2;
  padding: 1.25rem 1.5rem;
}

@media (min-width: 500px) {
  .alert {
    padding: 1.25rem 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 991px) {
  html.load .app-panel {
    transform: translateY(100%);
    opacity: 0;
  }

  html.ap-open .app-panel {
    display: block !important;
  }

  .app-panel {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4rem;
    pointer-events: none;
    z-index: 99;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  .app-panel-wrap {
    width: 100%;
    max-width: 26rem;
    padding: 0.75rem;
    margin: 0 auto;
    background-color: #fff;
    pointer-events: auto;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 0 1.5rem 0 rgba(0, 0, 0, 0.07);
    position: relative;
    border-radius: 1rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .app-panel-wrap::after {
    content: "";
    display: block;
    clear: both;
  }

  .app-panel-wrap>img {
    float: left;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    margin-right: 0.75rem;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 1rem 0 rgba(0, 0, 0, 0.07);
  }

  .app-panel-cont {
    font-size: 0.75rem;
    overflow: hidden;
    padding-top: 1px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .app-panel-cont>.fbold {
    font-size: 0.875rem;
    display: block;
  }

  .app-panel-btns {
    float: right;
    padding: 0.25rem;
  }

  .app-panel-btns .btn-green {
    font-size: 0.75rem;
  }

  .app-panel-btns .btn-green::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
  }

  .app-panel-close {
    width: 2rem;
    padding: 0.375rem;
    background-color: #f5f6f7;
    position: relative;
    z-index: 2;
  }

  .app-panel-close svg {
    display: block;
    transition: transform 0.4s ease;
  }

  .app-panel-close:hover svg {
    transform: rotate(180deg);
  }
}

html.darkmod .modal,
html.darkmod body {
  background: #0d0d0d;
  color: #f0f0f0;
}

html.darkmod .header::after {
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.5);
}

html.darkmod .section-sep {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

html.darkmod .footer {
  color: #fff;
}

html.darkmod .btn.btn-dark,
html.darkmod .ui-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  opacity: 1 !important;
}

html.darkmod .seo-section {
  color: rgba(255, 255, 255, 0.5);
}

html.darkmod .seo-section a {
  color: rgba(255, 255, 255, 0.5);
}

html.darkmod .app_list .item_app {
  background-color: #1a1a1a;
}

html.darkmod .cat-apps-img,
html.darkmod .item_app .img,
html.darkmod .post .img {
  background-color: rgba(255, 255, 255, 0.05);
}

html.darkmod .card-list .item_app,
html.darkmod .carousel-apps .item_app {
  background-color: #141414;
}

html.darkmod .cat-apps-item.more,
html.darkmod .mail_feedback {
  border-color: rgba(255, 255, 255, 0.1);
}

html.darkmod .modal_search {
  background-color: #0d0d0d;
}

html.darkmod .mail_feedback {
  color: #fff;
}

html.darkmod .mail_black {
  display: none !important;
}

html.darkmod .mail_white {
  display: block !important;
}

html.darkmod .cd-faq-group>li,
html.darkmod .post_list,
html.darkmod .ui-dialog .ui-dialog-buttonpane {
  border-top-color: rgba(255, 255, 255, 0.1);
}

html.darkmod .share {
  color: rgba(255, 255, 255, 0.8);
}

html.darkmod .share-box>a {
  border-left-color: rgba(255, 255, 255, 0.1);
}

html.darkmod .share-box {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

html.darkmod .modal_catmenu a {
  color: inherit;
}

html.darkmod .toolbar,
html.darkmod .ui-dialog-titlebar {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.01);
}

html.darkmod .post_list .post {
  background-color: #141414;
}

html.darkmod .toolbar {
  color: #c5cdd4;
}

html.darkmod .alert {
  background-color: rgba(247, 122, 76, 0.2);
}

html.darkmod .muted {
  color: rgba(255, 255, 255, 0.65) !important;
}

html.darkmod .app_view_pad .spec {
  color: rgba(255, 255, 255, 0.85);
}

html.darkmod button {
  color: inherit;
}

html.darkmod .navigation_ext {
  background-color: #141414;
  border-color: #141414;
}

html.darkmod .navigation_ext> :last-child {
  border-left-color: rgba(255, 255, 255, 0.1);
}

html.darkmod .navigation_ext> :first-child {
  border-right-color: rgba(255, 255, 255, 0.1);
}

html.darkmod .box_shadow {
  background-color: #1a1a1a;
}

html.darkmod .c-warn {
  color: #ffe93b !important;
}

html.darkmod .b-yellow.c-warn {
  color: #8d764d !important;
}

html.darkmod .download_line.light {
  background-color: rgba(255, 255, 255, 0.1);
}

html.darkmod .box_grey {
  background-color: #141414;
}

html.darkmod .app_view-first .img {
  background: 0 0;
  box-shadow: none;
}

html.darkmod .search_field>input {
  background-color: #1a1a1a;
  color: #fff;
  box-shadow: 0 0.5rem 1.375rem 0 rgba(0, 0, 0, 0.4);
}

html.darkmod .ui-dialog {
  border: 0 none;
  background-color: #1a1a1a;
  box-shadow: 0 0.5rem 2.5rem -0.5rem rgba(0, 0, 0, 0.9);
}

html.darkmod .ui-dialog-titlebar-close .ui-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z' fill='%23fff'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
}

html.darkmod .unit-rating {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23595A5C' d='M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z'/%3E%3C/svg%3E");
}

html.darkmod .unit-rating li.current-rating {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23939395' d='M12,17.27L18.18,21l-1.64-7.03L22,9.24l-7.19-0.61L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27z'/%3E%3C/svg%3E");
}

html.darkmod .unit-rating li a:hover,
html.darkmod .unit-rating li.current-rating {
  background-color: #1a1a1a;
}

html.darkmod .logo-t-fill {
  fill: #fff;
}

html.darkmod .logo-wmd-bg {
  fill: rgba(255, 235, 235, 0.1);
}

html.darkmod .logo-psh-bg {
  fill: rgba(230, 244, 220, 0.1);
}

html.darkmod .logo-w-fill {
  fill: #fff;
}

html.darkmod .logo-hwn-bg {
  fill: #0d0d0d;
}

html.darkmod .logo-hny-bg {
  fill: rgba(220, 239, 247, 0.1);
}

html.darkmod .logo-hbd-bg {
  fill: rgba(238, 235, 255, 0.1);
}

html.darkmod .logo-ahd-bg {
  fill: rgba(104, 203, 91, 0.1);
}

html.darkmod .logo-lvd-bg {
  fill: rgba(255, 104, 97, 0.1);
}

html.darkmod .logo-lvd-text {
  fill: #fff;
}

html.darkmod .breadcrumbs::after {
  background-color: #0d0d0d;
  box-shadow: 0 0 1rem 1rem #0d0d0d;
}

@media (min-width: 640px) {
  html.darkmod .post_view {
    background-color: #141414;
  }
}

@media (min-width: 768px) {
  html.darkmod .app_view_wrp {
    background-color: #141414;
  }
}

@media (max-width: 991px) {

  html.darkmod .hmenu,
  html.darkmod .submenu.open {
    background-color: #0d0d0d;
    color: #f0f0f0;
  }

  html.darkmod .app-panel-wrap {
    background-color: #1a1a1a;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 1.5rem 0 rgba(0, 0, 0, 0.4);
  }

  html.darkmod .app-panel-close {
    background-color: rgba(255, 255, 255, 0.1);
  }

  html.darkmod .download_line.light>.size {
    color: #fff;
  }
}

@media (max-width: 767px) {
  html.darkmod .app_view_pad .rate {
    background-color: #1d1f21;
  }

  html.darkmod .app_screens {
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }

  html.darkmod .app_view_pad .rate .unit-rating li a:hover,
  html.darkmod .app_view_pad .rate .unit-rating li.current-rating {
    background-color: #1d1f21;
  }

  html.darkmod .version_upload {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
  }
}

@media (max-width: 575px) {
  html.darkmod .last-news .post {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 992px) {
  html.darkmod .head_menu_f>li>a>i {
    color: #fff;
    opacity: 0.3;
  }

  html.darkmod .head_menu_f>li.active>a>i {
    opacity: 1;
  }

  html.darkmod .minbtn,
  html.darkmod .tool-btn::after {
    background-color: rgba(220, 225, 229, 0.1);
  }

  html.darkmod .minbtn:hover,
  html.darkmod a.lang:hover>.minbtn {
    background-color: rgba(220, 225, 229, 0.3);
  }

  html.darkmod .foot_line {
    background-color: #000;
  }

  html.darkmod .social::before,
  html.darkmod ul.foot_menu>li>a {
    opacity: 0.5;
  }

  html.darkmod .carousel-apps-out::after {
    background-image: linear-gradient(90deg, #121416 0, rgba(255, 255, 255, 0) 100%);
  }

  html.darkmod .app_list .item_app:hover,
  html.darkmod .card-list .item_app:hover,
  html.darkmod .carousel-apps .item_app:hover,
  html.darkmod .post_list .post:hover {
    background-color: #212325;
  }

  html.darkmod .download_line.light>.size {
    background-color: #292c2f;
  }

  html.darkmod .btn.btn-dark:hover,
  html.darkmod .ui-button:hover {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.03);
    background-color: rgba(255, 255, 255, 0.15);
  }

  html.darkmod .btn.btn-dark:active,
  html.darkmod .ui-button:active {
    background-color: rgba(220, 225, 229, 0.05);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.02);
  }

  html.darkmod .cbtn-hide::after {
    background-color: #121416;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.5);
  }

  html.darkmod .cat-apps-item.more:hover {
    border-color: rgba(255, 255, 255, 0.2);
  }

  html.darkmod .share-box>a:hover {
    box-shadow: inset 0 -4rem 0 0 rgba(255, 255, 255, 0.05);
  }

  html.darkmod .submenu {
    background-color: #34373b;
    box-shadow: 0 0.5rem 1.5rem 0 rgba(0, 0, 0, 0.3);
  }

  html.darkmod .submenu::after {
    border-bottom-color: #34373b;
  }

  html.darkmod .corner::after {
    border-bottom-color: #121416;
  }

  html.darkmod .post .img::after {
    border-left-color: #121416;
  }

  html.darkmod .item_app:hover .unit-rating li a:hover,
  html.darkmod .item_app:hover .unit-rating li.current-rating {
    background-color: #212325;
  }

  html.darkmod .app_screens_in::-webkit-scrollbar {
    background-color: #121416;
  }

  html.darkmod .app_screens_in::-webkit-scrollbar-thumb {
    background-color: #292c2f;
    border-color: #121416;
  }

  html.darkmod .app_screens_in::-webkit-scrollbar-track {
    background-color: #121416;
    border-color: #121416;
  }

  html.darkmod .sep_line {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 1025px) {
  html.darkmod .app_view-first .spec_addon {
    color: rgba(255, 255, 255, 0.5);
  }
}

.links a {
  display: block;
  text-decoration: none;
  background: #8bc24c;
  color: #fff;
  font-size: 18px;
  padding: 14px 25px;
  border-radius: 24px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
}

.content-area .status .category a:hover {
  color: #748796;
  border-color: #ff5521;
}

.comments-tree-item {
  background-color: #fff;
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 10px;
  border-radius: 20px;
  position: relative;
}

.children .comments-tree-item {
  border-top: 1px solid #edf0f2;
}

.comments-tree-item:not(:first-child) {
  border-top: 1px solid #edf0f2;
}

.comment__header {
  display: flex;
}

.comment__avatar {
  margin-right: 25px;
}

.comment__avatar span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #eef3f9;
  width: 55px;
  height: 55px;
  overflow: hidden;
}

.comment__avatar span.rand_photo img {
  max-width: 55px;
  max-height: 55px;
}

.comment__footer {
  display: flex;
  flex-direction: column;
  padding-left: 80px;
}

.comment__footer .text {
  margin: 10px 0 0 0;
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.47;
  color: #000;
  word-wrap: break-word;
}

.comment__info-left .author {
  font-size: 20px;
  font-weight: 700;
}

.comment__info-left time {
  font-size: 15px;
  color: #969fbc;
}

.comment__moderation {
  padding: 0;
  list-style: none;
}

.comment__moderation>div:first-of-type {
  margin-left: 0;
}

.comment__moderation>div {
  float: left;
  margin: 0 17px;
  text-transform: uppercase;
}

input[name=email],
input[name=author] {
  width: 100%;
  border: 0 none;
  outline: 0 !important;
  background-color: #fff;
  padding: 1.5rem;
  font-size: 1.2rem;
  border: 0 none;
  box-shadow: 0 0.5rem 1.375rem 0 rgba(0, 0, 0, 0.07);
  margin-bottom: 1rem;
}

textarea {
  overflow: auto;
  resize: vertical;
  display: block;
  width: 100%;
  outline: 0 !important;
  border-radius: 0.125rem;
  background-color: #fff;
  padding: 1.5rem;
  font-size: 1.2rem;
  border: 0 none;
  box-shadow: 0 0.5rem 1.375rem 0 rgba(0, 0, 0, 0.07);
  margin-bottom: 1rem;
}

.form-combo {
  display: flex;
  margin: 0.8rem 0;
  gap: 1.25rem;
}

.form-submit {
  margin: 1rem 0;
}

@media (max-width: 575px) {
  .comment__footer .text {
    font-size: 15px;
  }
}

html.darkmod .comments-tree-item {
  background: rgba(76, 203, 112, 0.1);
}

html.darkmod .comment__footer .text {
  color: #fff;
}

html.darkmod textarea,
html.darkmod input[name=email],
html.darkmod input[name=author] {
  background-color: #292c2f;
  color: #fff;
  box-shadow: 0 0.5rem 1.375rem 0 rgba(0, 0, 0, 0.25);
}

@media (max-width: 648px) {
  .form-combo {
    flex-direction: column;
    gap: 1.25rem;
  }

  .comment__info-left .author {
    font-size: 15px;
  }

  .comment__footer {
    margin: 25px 0 0;
    padding-left: 0;
  }

  .reply a {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .card-list {
    margin: 0 -4px 0 -2px;
  }

  .card-list .item {
    padding: 0;
    margin-left: -1px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .card-list .item {
    max-width: 33.333333%;
  }
}

@media (max-width: 575px) {
  .card-list .item {
    max-width: 50%;
    margin-top: -1px;
  }
}

/*---- single ------*/
.bg-white {
  background-color: #fff;
}

.rounded-2xl {
  border-radius: 0.5rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.overflow-hidden {
  overflow: hidden;
}

.rating-info {
  margin: 3px 15px;
}

#rating-layer {
  margin: 15px 0 0 0;
}

.m-2 {
  margin: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

nav {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.overflow-y-auto {
  overflow-y: auto;
}

svg {
  width: 1rem;
  height: 1rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.gap-x-6 {
  gap: 1.5rem;
}

.gap-y-6 {
  row-gap: 1.5rem;
}

.items-center {
  align-items: center;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.md\:px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.md\:flex-row {
  flex-direction: row;
}

.md\:items-start {
  align-items: flex-start;
}

#post-thumbnail {
  box-shadow: 0 1.5rem 2rem -1rem rgba(0, 0, 0, 0.16);
}

.w-48,
.h-48 {
  width: 12rem;
  height: 12rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.md\:flex-1 {
  flex: 1;
}

.md\:my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.space-x-4 {
  gap: 1rem;
}

.text-gray-600 {
  color: #4b5563;
}

.bg-gray-100 {
  background-color: #f3f4f6;
  border: 1px solid #e2e2e2;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.text-sm {
  font-size: 0.875rem;
}

.mt-5 {
  margin-top: 5px;
}

a.w-full {
  width: 100%;
  margin-top: 1rem;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

a.w-full:hover {
  background-color: var(--post-color-text);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {

  .gap-x-6,
  .gap-y-6 {
    gap: 0;
  }

  #post-thumbnail {
    margin-bottom: 1rem;
  }

  .md\:flex-row,
  .md\:items-start,
  .md\:justify-start,
  .md\:text-left {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .space-x-4 {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  #rating {
    flex-direction: column;
    gap: 0.25rem;
  }

  a.w-full {
    width: 100%;
    margin-top: 0.5rem;
  }

  .text-center {
    text-align: center;
  }

  .my-8 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:my-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
  }
}

/*--- single dark mode ----*/
html.darkmod .bg-white {
  background-color: #292c2f;
}

html.darkmod nav {
  padding: 1rem;
  border-bottom: 1px solid rgba(104, 203, 91, 0.3019607843);
}

html.darkmod .text-gray-400 {
  color: #fff;
}

#post-thumbnail {
  box-shadow: 0 1.5rem 2rem -1rem rgba(0, 0, 0, 0.16);
}

html.darkmod h1 {
  font-weight: 700;
  color: #fff;
}

html.darkmod .text-gray-600 {
  color: #e2e2e2;
  font-weight: normal !important;
}

html.darkmod .bg-gray-100 {
  background-color: #222426;
  border: 1px solid rgba(104, 203, 91, 0.3019607843);
}

.lg\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

svg {
  height: 2rem;
  width: 2rem;
  color: var(--post-color);
  margin-right: 0.75rem;
}

.text-gray-600 {
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 600;
}

.text-gray-900 {
  color: #1f2937;
  font-weight: bold;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.apk-info-box {
  background: #f7f7f7;
  padding: 10px;
  border: 1px solid #e2e2e2;
}

html.darkmod .apk-info-box {
  background: #222426;
}

.apk-info-box div a {
  color: #68cb5b !important;
}

.apk-info-box div p {
  margin-bottom: 0;
}

html.darkmod .apk-info-box div p {
  color: #e2e2e2;
}

.category-box {
  background: #f9fafb;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 30px;
}

html.darkmod .category-box {
  background: #222426;
}

.category-box h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

html.darkmod .category-box h3 {
  color: #fff;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-item {
  display: inline-block;
  background: #f1f5f9;
  color: #111827;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}

html.darkmod .category-item {
  display: inline-block;
  background: #111827;
  color: #f1f5f9;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}

.category-item:hover {
  background: #e2e8f0;
  text-decoration: none;
}

html.darkmod .category-item:hover {
  background: #000000;
  text-decoration: none;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 15px;
}

.pagination {
  margin-top: 25px;
}

.card-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  box-sizing: border-box;
}

.spoiler {
  max-height: 25rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* 3 columns on desktop */
  }

  .spoiler {
    max-height: 15rem;
    overflow: hidden;
  }
}

/* Card styling (as before) */
.card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  transition: box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 16px;
}

html.darkmod .card {
  background: #222426;
  border: 1px solid rgba(104, 203, 91, 0.3019607843);
  border-radius: 16px;
  padding: 16px;
  transition: box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 16px;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

html.darkmod .card:hover {
  box-shadow: 0 4px 12px rgba(229, 226, 226, 0.185);
  text-decoration: none;
}

.card .thumb {
  position: relative;
  flex-shrink: 0;
}

.card .thumb img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  -o-object-fit: cover;
  object-fit: cover;
}

.card .thumb .rotate-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #3b82f6;
  border: 2px solid #fff;
  border-radius: 9999px;
  padding: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.card .thumb .rotate-badge svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.card .thumb .mod-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.card .thumb .mod-badge span {
  background-color: #dc2626;
  color: #fff;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 999px;
  font-weight: 500;
}

.card .content {
  flex: 1;
  min-width: 0;
}

.card .content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 4px;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

html.darkmod .card .content h3 {
  color: #fff;
}

.card .content h3 span.updated {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
}

.card .content h3 span.new {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: rgba(220, 38, 38, 0.2);
  color: #ea4545;
}

.card .content .meta .child-category {
  font-weight: 500;
  font-size: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3px;
  margin-top: 9px;
}

.card .content .version-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  margin-top: 8px;
}

.card .content .version-info span {
  color: #6b7280;
}

.card .content .version-info .mod-type {
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 12px;
}

.card .content .version-info .mod-type svg {
  width: 14px;
  height: 14px;
  margin: 0px;
}

/*----------- Header ---------*/
.header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(1200px + 4rem);
  margin: 0 auto;
}

.logo img {
  display: block;
}

.vhide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.head_menu_btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.butterbrod i {
  display: block;
  width: 24px;
  height: 3px;
  background: #000;
  margin: 5px 0;
  transition: all 0.3s;
}

.hmenu {
  display: none;
}

.hmenu.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
}

.btn-close {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.head_menu_f {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.hmenu.active .head_menu_f {
  margin-top: 60px;
}

.head_menu_f li {
  margin: 10px 0;
}

.head_menu_f li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1f2937;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  transition: color 0.3s;
}

.head_menu_f li a i {
  margin-right: 8px;
}

.tools {
  display: flex;
  align-items: center;
}

.tool-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: 10px;
}

.tool-btn svg {
  fill: #1f2937;
  transition: fill 0.3s;
}

.tool-btn:hover svg {
  fill: #15b300;
}

.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

html.darkmod .search-modal {
  background: rgba(255, 255, 255, 0.94);
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  background: #fff;
  width: 100%;
  max-width: 800px;
  padding: 20px;
  border-radius: 0;
  position: relative;
  margin: 0 25px;
}

.search-close {
  position: absolute;
  top: 29px;
  right: 28px;
  font-size: 24px;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.search-close:hover {
  color: #3b82f6;
}

.search-form {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.search-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  fill: #6b7280;
}

.search-field {
  width: 100%;
  padding: 24px 50px 24px 75px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  font-size: 18px;
  outline: none;
}

.search-suggestions {
  margin-top: 20px;
}

.suggestion-title {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.suggestion-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-list li {
  margin: 0;
}

.suggestion-list a {
  display: inline-block;
  padding: 8px 12px;
  background: #f3f4f6;
  color: #1f2937;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background 0.3s;
}

.suggestion-list a:hover {
  background: #e5e7eb;
}

@media (min-width: 992px) {

  .head_menu_btn,
  .btn-close.hmenu_close {
    display: none;
  }

  .hmenu {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
  }

  .head_menu_f {
    flex-direction: row;
    align-items: center;
  }

  .head_menu_f li {
    margin: 0 10px;
  }
}

html.darkmod .header {
  background-color: #292c2f;
  border-bottom-color: #374151;
}

html.darkmod .head_menu_f li a {
  color: #e5e7eb;
}

html.darkmod .head_menu_f li a:hover,
html.darkmod .head_menu_f li.active a {
  color: #68cb5b;
}

html.darkmod .tool-btn svg {
  fill: #e5e7eb;
}

html.darkmod .tool-btn:hover svg {
  fill: #68cb5b;
}

html.darkmod .butterbrod i {
  background: #e5e7eb;
}

html.darkmod .search-modal-content {
  background: #1f2937;
}

html.darkmod .search-field {
  background: #374151;
  border-color: #4b5563;
  color: #e5e7eb;
}

html.darkmod .search-icon {
  fill: #9ca3af;
}

html.darkmod .search-close {
  color: #9ca3af;
}

html.darkmod .search-close:hover {
  color: #68cb5b;
}

html.darkmod .suggestion-title {
  color: #9ca3af;
}

html.darkmod .suggestion-list a {
  background: #374151;
  color: #e5e7eb;
}

html.darkmod .suggestion-list a:hover {
  background: #4b5563;
}

.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  /* -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); */
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.post_view .post_left {
  flex: 0 0 15%;
  max-width: 15%;
}

.accordion {
  margin: 20px 12px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 15px 20px;
  text-align: left;
  border: none;
  outline: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
}

.accordion-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  /* turns + into × */
}

.accordion-body {
  display: none;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
  font-size: 16px;
  line-height: 1.6;
}

.dw-header {
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107, 114, 128, var(--tw-text-opacity, 1));
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.child-category {
  margin-top: 8px;
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.p-6 {
  padding: 1.5rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.tbm-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156, 163, 175, var(--tw-text-opacity, 1));
}

.toolsbar svg {
  height: 18px;
  width: 18px;
  margin-right: 8px;
}

.category {
  margin-bottom: 5px;
}

.category svg {
  margin-top: 3px;
  margin-right: 8px;
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17, 24, 39, var(--tw-text-opacity, 1));
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.7777778;
}

.prose-lg :where(h2):not(:where([class~=not-prose],
    [class~=not-prose] *)) {
  font-size: 1.6666667em;
  margin-top: 1.2em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}

.text-yellow-500 {
  --tw-text-opacity: 1;
  color: rgb(234, 179, 8, var(--tw-text-opacity, 1));
}

html.darkmod .text-yellow-500 {
  color: #fff;
}

.sec-text {
  margin-top: 5px;
}

.blur-up {
  filter: blur(10px);
  opacity: 0;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.blur-up.lazyloaded {
  filter: blur(0);
  opacity: 1;
}

/* Typography and spacing */
.description {
  line-height: 1.7;
  font-size: 16px;
  color: #222;
  padding: 0 16px;
  margin: 0 auto;
}

html.darkmod .description {
  color: #fff;
}

.description h2,
.description h3,
.description h4 {
  font-weight: 600;
  line-height: 1.4;
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  color: #111;
}

html.darkmod .description h2,
html.darkmod .description h3,
html.darkmod .description h4 {
  color: #fff;
}

.description h2 {
  font-size: var(--font-size-h2);
  padding-left: 10px;
}

.description h3 {
  font-size: 20px;
}

.description h4 {
  font-size: 18px;
  font-style: italic;
}

/* Paragraphs */
.description p {
  margin: 1em 0;
  color: #333;
}

html.darkmod .description p {
  color: #fff;
}

/* Lists */
.description ul,
.description ol {
  padding-left: 1.4em;
  margin: 1em 0;
}

.description ul li,
.description ol li {
  margin-bottom: 0.5em;
}

/* Images */
.description img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  display: block;
}

/* Blockquotes */
.description blockquote {
  margin: 1.5em 0;
  padding: 1em 1.2em;
  background: #f9f9f9;
  border-left: 4px solid #ccc;
  color: #555;
  font-style: italic;
}

html.darkmod .description blockquote {
  background: #333;
  border-left-color: rgba(104, 203, 91, 0.3019607843);
  color: #fff;
}

/* Responsive font size */
@media (max-width: 600px) {
  .description {
    font-size: 15px;
  }

  .description h2 {
    font-size: var(--font-size-h2);
  }

  .description h3 {
    font-size: 18px;
  }

  .description h4 {
    font-size: 17px;
  }
}

/* Add more margin on narrow screens */
@media (max-width: 500px) {
  .apk-info-box {
    margin: 0 15px;
  }
}

.box_download h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  padding: 15px 0px 10px 25px;
}

.container-dw {
  width: 100%;
  max-width: calc(1200px + 4rem);
  margin: 0 auto;
  padding: 0 0.5rem;
}

.truncate-slider {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 15px;
  display: block;
  max-width: 100%;
}

.name {
  max-width: 100%;
  overflow: hidden;
}

.item_app {
  position: relative;
  width: 100%;
}

/* ========================================
   404 Page Styles
   ======================================== */
.page-404 .error-404-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  min-height: 50vh;
}

.error-404-code {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--theme-color, #68cb5b), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.error-404-title {
  font-size: var(--font-size-h2);
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.error-404-text {
  font-size: 1rem;
  max-width: 500px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.error-404-search {
  width: 100%;
  max-width: 400px;
}

.error-404-btn {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
}

@media (min-width: 768px) {
  .error-404-code {
    font-size: 8rem;
  }
}

/* ========================================
   Background Noise Texture
   ======================================== */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

html.darkmod body::after {
  opacity: 0.06;
}

/* ========================================
   Utility Replacements (for Tailwind classes used in templates)
   ======================================== */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-gray-400 {
  color: var(--text-muted);
}

.text-gray-600 {
  color: var(--text-secondary);
}

.bg-white {
  background-color: var(--bg-white);
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.pt-4 {
  padding-top: 1rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.m-2 {
  margin: 0.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.h-8 {
  width: 2rem;
}

.w-8 {
  height: 2rem;
}

.h-60 {
  height: 15rem;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.z-10 {
  z-index: 10;
}

.text-white {
  color: #fff;
}

.drop-shadow-md {
  filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.drop-shadow-sm {
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
}

.bg-green-600 {
  background-color: var(--bg-success);
}

/* Dark mode color adjustments for utilities */
html.darkmod .text-gray-400 {
  color: var(--text-muted);
}

html.darkmod .text-gray-600 {
  color: var(--text-secondary);
}

html.darkmod .bg-white {
  background-color: var(--bg-white);
}

/* ========================================
   Swiper Version Badge (replaces inline styles)
   ======================================== */
.swiper-version-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(242, 68, 55, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  z-index: 5;
}

/* ========================================
   Carousel Mobile Responsive (migrated from inline)
   ======================================== */
@media (max-width: 768px) {
  #carousel-most-viewed .item {
    width: 100%;
    margin-right: 0;
  }

  .flickity-prev-next-button {
    display: none;
  }
}

/* ========================================
   Dark Mode: Single Page Content Areas
   ======================================== */
html.darkmod .app_view_wrp {
  background-color: var(--bg-card) !important;
  color: var(--text-primary);
}

html.darkmod .app_view_pad .description {
  color: var(--text-primary);
}

html.darkmod .app_view_pad .description p,
html.darkmod .app_view_pad .description span,
html.darkmod .app_view_pad .description li,
html.darkmod .app_view_pad .description div {
  color: var(--text-primary) !important;
}

html.darkmod .app_view_pad .description h2,
html.darkmod .app_view_pad .description h3,
html.darkmod .app_view_pad .description h4 {
  color: var(--text-primary);
}

html.darkmod .app_view_pad {
  background-color: var(--bg-card);
}

html.darkmod .section-title {
  color: var(--text-primary);
}

html.darkmod .app_view {
  color: var(--text-primary);
}

/* ========================================
   Slider Card (blocks) Dark Mode Fix
   ======================================== */
.blocks {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.blocks img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.darkmod .blocks {
  background-color: var(--bg-card);
}

/* ========================================
   Accordion Styles
   ======================================== */
.accordion {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  margin: 1rem 0.5rem;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.accordion-body {
  display: none;
  padding: 1rem 1.25rem;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}

/* Dark mode accordion */
html.darkmod .accordion {
  border-color: var(--border-color);
}

html.darkmod .accordion-header {
  background: var(--bg-card) !important;
  color: var(--text-primary);
}

html.darkmod .accordion-body {
  background: var(--bg-card) !important;
  border-top-color: var(--border-color);
  color: var(--text-primary);
}

html.darkmod .accordion-body p,
html.darkmod .accordion-body li,
html.darkmod .accordion-body span,
html.darkmod .accordion-body div {
  color: var(--text-primary) !important;
}

html.darkmod .accordion-icon {
  color: var(--text-secondary);
}

/* ========================================
   APK Info Box Dark Mode
   ======================================== */
html.darkmod .bg-gray-50 {
  background-color: var(--bg-secondary) !important;
}

.text-gray-900 {
  color: #111827;
}

html.darkmod .text-gray-900 {
  color: var(--text-primary) !important;
}

.text-yellow-500 {
  color: #eab308;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-6 {
  gap: 1.5rem;
}

.p-4 {
  padding: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.transition-shadow {
  transition: box-shadow 0.15s ease-in-out;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.h-6 {
  height: 1.5rem;
}

.w-6 {
  width: 1.5rem;
}

/* Grid utilities for apk-info */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 768px) {
  .md\:p-8 {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bg-gray-50 {
  background-color: #f9fafb;
}

/* Dark mode for all apk-info boxes */
html.darkmod .apk-info-box {
  background-color: var(--bg-tertiary) !important;
  border-color: var(--border-color);
}

html.darkmod .apk-info-box .text-gray-600 {
  color: var(--text-secondary) !important;
}

html.darkmod .apk-info-box .text-gray-900,
html.darkmod .apk-info-box .font-bold {
  color: var(--text-primary) !important;
}