@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
}

body {
  background-color: white;
}

img {
  max-width: 100%;
  display: block;
  margin: 0;
}

/*------------------------------------------------------------------
[Table of Contents]

1. Variables
2. Base Header Styles
3. Header Top (Desktop only by default)
4. Header Main
    - Site Branding (Logo)
    - Main Navigation (Mobile Off-Canvas & Desktop Horizontal)
    - Header Actions (Search & Toggles)
5. Responsive Breakpoints
    - Tablet View
    - Desktop View
-------------------------------------------------------------------*/
/*=================================================================
  1. Variables
=================================================================*/
/*=================================================================
  2. Base Header Styles
=================================================================*/
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.site-header a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease-in-out;
}
.site-header a:hover {
  color: #3498db;
}
.site-header .container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/*=================================================================
  3. Header Top (Hidden on mobile)
=================================================================*/
.header-top {
  display: none;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 0;
  font-size: 14px;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-top .social-links-top a svg {
  display: block;
  fill: #34495e;
  transition: fill 0.3s ease-in-out;
}
.header-top .social-links-top a svg:hover {
  fill: #3498db;
}
.header-top .user-navigation .button-register {
  background-color: #3498db;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out;
}
.header-top .user-navigation .button-register:hover {
  background-color: #217dbb;
  color: #ffffff;
}

/*=================================================================
  4. Header Main
=================================================================*/
.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.site-branding .logo-link {
  display: inline-block;
}
.site-branding img {
  max-height: 45px;
  width: auto;
  display: block;
}

.main-navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  padding: 60px 20px 20px;
  overflow-y: auto;
}
.main-navigation .main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.main-navigation .menu-item a {
  display: block;
  padding: 12px 15px;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid #e0e0e0;
}
.main-navigation .menu-item a:hover {
  background-color: #f8f9fa;
}
.main-navigation .current-menu-item a {
  color: #3498db;
  font-weight: 700;
}

.menu-is-open .main-navigation {
  transform: translateX(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search {
  display: none;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  z-index: 1001;
  color: #2c3e50;
}
.mobile-menu-toggle .icon-menu-close {
  display: none;
}

.menu-is-open .mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
}
.menu-is-open .mobile-menu-toggle .icon-menu-open {
  display: none;
}
.menu-is-open .mobile-menu-toggle .icon-menu-close {
  display: block;
}

/*=================================================================
  5. Responsive Breakpoints
=================================================================*/
@media (min-width: 768px) {
  .header-main .container {
    height: 80px;
  }
  .header-search {
    display: block;
    position: relative;
  }
  .header-search .search-field {
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 40px 8px 15px;
    width: 250px;
    transition: width 0.3s ease-in-out;
  }
  .header-search .search-field:focus {
    outline: none;
    border-color: #3498db;
    width: 300px;
  }
  .header-search .search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #34495e;
  }
  .header-search .search-submit:hover {
    color: #3498db;
  }
}
@media (min-width: 1024px) {
  .header-top {
    display: block;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .main-navigation {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    transform: none;
    padding: 0;
    overflow-y: visible;
  }
  .main-navigation .main-menu {
    flex-direction: row;
    gap: 10px;
  }
  .main-navigation .menu-item a {
    font-size: 1rem;
    font-weight: 500;
    border: none;
    padding: 10px 15px;
    position: relative;
  }
  .main-navigation .menu-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease-in-out;
  }
  .main-navigation .menu-item a:hover::after, .main-navigation .menu-item a.current-menu-item::after {
    width: 100%;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
}

body {
  background-color: white;
}

img {
  max-width: 100%;
  display: block;
  margin: 0;
}

.site-footer {
  position: relative;
  margin-top: 3rem;
  color: #dde4eb;
}
.site-footer .footer-wave {
  line-height: 0;
}
.site-footer .footer-wave svg {
  width: 100%;
  height: auto;
}
.site-footer .footer-main {
  background-color: #2c3e50;
  padding: 2rem 0;
}
.site-footer .footer-main .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.site-footer .footer-main .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.site-footer .footer-main .footer-col {
  margin-bottom: 1.5rem;
}
.site-footer .footer-main .footer-col-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.site-footer .footer-main .footer-col-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #1bbc9b;
}
.site-footer .footer-main .footer-col-subtitle {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.site-footer .footer-main .footer-about .footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.site-footer .footer-main .footer-about .footer-logo img {
  height: 80px;
  width: auto;
}
.site-footer .footer-main .footer-about .about-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.site-footer .footer-main .footer-links .footer-menu {
  list-style: none;
}
.site-footer .footer-main .footer-links .footer-menu li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-main .footer-links .footer-menu li a {
  color: #dde4eb;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9rem;
}
.site-footer .footer-main .footer-links .footer-menu li a:hover {
  color: #1bbc9b;
}
.site-footer .footer-main .footer-connect .social-links {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin-bottom: 1.5rem;
}
.site-footer .footer-main .footer-connect .social-links li .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #dde4eb;
  transition: all 0.3s ease;
}
.site-footer .footer-main .footer-connect .social-links li .social-btn:hover {
  background-color: #1bbc9b;
  transform: translateY(-3px);
}
.site-footer .footer-main .footer-connect .social-links li .social-btn .social-icon-wrapper {
  display: flex;
}
.site-footer .footer-main .footer-connect .social-links li .social-btn .social-icon-wrapper svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.site-footer .footer-main .footer-connect .newsletter-section {
  margin-top: 1.5rem;
}
.site-footer .footer-main .footer-connect .newsletter-section .newsletter-hint {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.site-footer .footer-main .footer-connect .newsletter-section .newsletter-form {
  display: flex;
}
.site-footer .footer-main .footer-connect .newsletter-section .newsletter-form input[type=email] {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 0.9rem;
}
.site-footer .footer-main .footer-connect .newsletter-section .newsletter-form button {
  background-color: #1bbc9b;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.site-footer .footer-main .footer-connect .newsletter-section .newsletter-form button:hover {
  background-color: #158f76;
}
.site-footer .footer-main .footer-connect .newsletter-section .newsletter-form button svg {
  fill: white;
  width: 20px;
  height: 20px;
}
.site-footer .footer-bottom {
  background-color: #233140;
  padding: 1.5rem 1rem;
  text-align: center;
}
.site-footer .footer-bottom .copyright {
  font-size: 0.85rem;
  opacity: 0.7;
}
.site-footer .footer-bottom .copyright .siteName {
  font-weight: 600;
}

@media (min-width: 768px) {
  .site-footer .footer-main .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .site-footer .footer-main {
    padding: 3rem 0;
  }
  .site-footer .footer-main .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 2.5rem;
  }
  .site-footer .footer-main .footer-col {
    margin-bottom: 0;
  }
  .site-footer .footer-bottom {
    text-align: center;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
}

body {
  background-color: white;
}

img {
  max-width: 100%;
  display: block;
  margin: 0;
}

.reviewer-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}
.reviewer-box .reviewer-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.reviewer-box .reviewer-header .reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
}
.reviewer-box .reviewer-header .reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewer-box .reviewer-header .reviewer-info {
  flex: 1;
}
.reviewer-box .reviewer-header .reviewer-info .reviewer-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #000000;
}
.reviewer-box .reviewer-header .reviewer-info .reviewer-role {
  font-size: 12px;
  color: #D61D80;
  font-weight: 500;
}
.reviewer-box .reviewer-bio {
  margin-bottom: 10px;
  font-size: 13px;
  color: #4c5462;
  line-height: 1.5;
  max-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.reviewer-box .reviewer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.reviewer-box .reviewer-tags .tag {
  background: #eaeaea;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  color: #4c5462;
}
.reviewer-box .reviewer-tags .tag:hover {
  background: #dddddd;
}
.reviewer-box .reviewer-socials {
  display: flex;
  gap: 8px;
}
.reviewer-box .reviewer-socials a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.2s ease;
}
.reviewer-box .reviewer-socials a:hover {
  transform: translateY(-2px);
}
.reviewer-box .reviewer-socials a.facebook {
  background-color: #3b5998;
}
.reviewer-box .reviewer-socials a.twitter {
  background-color: #1da1f2;
}
.reviewer-box .reviewer-socials a.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.reviewer-box .reviewer-socials a.youtube {
  background-color: #ff0000;
}
.reviewer-box .reviewer-socials a.linkedin {
  background-color: #0077b5;
}
.reviewer-box .reviewer-socials a.github {
  background-color: #333;
}
.reviewer-box .reviewer-socials a.default {
  background-color: #333;
}
.reviewer-box .reviewer-socials a.pinterest {
  background-color: #bd081c;
}
.reviewer-box .reviewer-socials a svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 480px) {
  .reviewer-box {
    padding: 12px;
  }
  .reviewer-box .reviewer-header .reviewer-avatar {
    width: 40px;
    height: 40px;
  }
  .reviewer-box .reviewer-header .reviewer-info .reviewer-name {
    font-size: 14px;
  }
  .reviewer-box .reviewer-header .reviewer-info .reviewer-role {
    font-size: 11px;
  }
  .reviewer-box .reviewer-bio {
    font-size: 12px;
    max-height: 54px;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
}

body {
  background-color: white;
}

img {
  max-width: 100%;
  display: block;
  margin: 0;
}

#contentShowMore {
  position: relative;
  max-height: 250px;
  overflow: hidden;
}
#contentShowMore::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  pointer-events: none;
}
#contentShowMore.expanded {
  max-height: none;
}
#contentShowMore.expanded::after {
  display: none;
}

.btnShowMore {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  padding: 8px 20px;
  cursor: pointer;
  color: #1a73e8;
  font-weight: 600;
  font-size: 14px;
  background-color: white;
  border: 1px solid #1a73e8;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.btnShowMore:hover {
  background-color: #f0f7ff;
}
@media (min-width: 768px) {
  .btnShowMore {
    font-size: 16px;
    padding: 10px 25px;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
}

body {
  background-color: white;
}

img {
  max-width: 100%;
  display: block;
  margin: 0;
}

.downloadClock {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  text-align: center;
}

.countdown-circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.countdown-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.countdown-circle circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.countdown-circle .bg {
  stroke: #e6e6e6;
}

.countdown-circle .progress {
  stroke: #1a73e8;
  transition: stroke-dashoffset 1s linear;
}

.countdown-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: bold;
  color: #1a73e8;
}

.countdown-text {
  font-size: 16px;
  color: #4c5462;
  margin-bottom: 10px;
}

.downloadContentShow {
  display: none;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .countdown-circle {
    width: 80px;
    height: 80px;
  }
  .countdown-number {
    font-size: 24px;
  }
  .countdown-text {
    font-size: 14px;
  }
}
.videoWrp {
  width: 100%;
  max-width: 800px;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-right: auto;
  margin-left: auto;
}
.videoWrp .gamePlayTitle {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 8px;
}
.videoWrp .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.videoWrp .video-container .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.videoWrp .video-container .video-thumbnail:hover {
  transform: scale(1.02);
}
.videoWrp .video-container .video-thumbnail:hover .play-button {
  background: rgba(255, 0, 0, 0.9);
}
.videoWrp .video-container .video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 2 2 10px rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.videoWrp .video-container .video-thumbnail .play-button svg {
  width: 24px;
  height: 24px;
  color: white;
}
.videoWrp .video-container .video-thumbnail .blurDiv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.videoWrp iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000000;
}

body {
  background-color: white;
}

img {
  max-width: 100%;
  display: block;
  margin: 0;
}

.body-search-mb {
  display: flex;
  margin-top: 12px;
  max-width: 500px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .body-search-mb {
    display: none;
  }
}
.body-search-mb .header-search {
  display: flex;
  align-items: center;
  width: 100%;
}
.body-search-mb form {
  width: 100%;
}
.body-search-mb .search-form {
  display: flex;
  height: 38px;
}
.body-search-mb .search-form input {
  flex: 1;
  border: 1px solid #e0e0e0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.body-search-mb .search-form .search-submit {
  background-color: #2c3e50;
  color: #fff;
  border: none;
  padding: 0 15px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
}
.body-search-mb .search-form .search-submit:hover {
  background-color: #1a252f;
}

a:hover {
  color: #ec8128;
}

.sm-single-content-image img {
  display: inline-block;
}

.font-size__small {
  font-size: 13px;
}

.br-50 {
  border-radius: 50px;
}

.mb-10 {
  margin-bottom: 10px !important;
}

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

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mtbreadcrum {
  margin-top: 44px;
}

.mt-150 {
  margin-top: 150px !important;
}

a {
  text-decoration: none;
  color: #1A73D6;
}

a:visited {
  color: inherit;
}

ul,
ol {
  margin-left: 16px;
}

input:not([type=checkbox], [type=radio]),
button,
.btn {
  border: 1px solid #707070;
  padding: 8px 16px;
  outline: none;
  appearance: none;
}

button,
.btn {
  cursor: pointer;
}
button:hover,
.btn:hover {
  transition: all 0.5s ease;
}

.btn-icon {
  display: flex;
  align-items: center;
}
.btn-icon .icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 2px;
}

.btn-red {
  border: 1px solid #1A73D6;
  background-color: #1A73D6;
  color: #fff !important;
}
.btn-red:hover {
  opacity: 0.8;
}

.btn-green {
  border-color: #006600;
  background-color: #006600;
  color: #fff !important;
}
.btn-green:hover {
  opacity: 0.8;
}

.btn-dark {
  border: 1px solid #000;
  background-color: #000;
  color: #fff !important;
}
.btn-dark:hover {
  opacity: 0.8;
}

.btn-outline-red {
  border: 1px solid #1A73D6;
  color: #1A73D6;
}
.btn-outline-red:hover {
  background-color: #1A73D6;
  color: #fff;
}

.btn-outline-dark {
  border: 1px solid #35A1BC;
  color: #35A1BC;
}
.btn-outline-dark:hover {
  background-color: #707070;
  color: #fff !important;
  border: 1px solid #707070;
}
.btn-outline-dark:visited {
  color: #35A1BC;
}

.btn-small {
  padding: 5px 16px;
  font-size: 0.825rem;
}

.fgl-dark {
  color: #949494;
  font-size: 13px;
}

.box-dropdown {
  position: relative;
  z-index: 1;
}
.box-dropdown.open .dd-toggle::after {
  transform: rotate(225deg) translateY(5px) translateX(-8px);
}
.box-dropdown.open .dd-content {
  display: inline-grid;
  padding-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.box-dropdown.open .dd-content a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
}
.box-dropdown.open .dd-content a:hover {
  background-color: #f5f5f5;
  color: #2196f3;
}
.box-dropdown .dd-toggle {
  user-select: none;
}
.box-dropdown .dd-content {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  border-radius: 5px;
  display: none;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1088px;
  width: 100%;
}

.container-fluid {
  max-width: 1088px;
  margin: 0 auto;
}

.language span {
  color: #000;
}
.language span:hover {
  color: #1A73D6;
}
.language .dd-content {
  padding: 5px 16px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.language .dd-content a {
  color: #000 !important;
  padding: 6px 0;
}
.language .dd-content a:hover {
  color: #1A73D6 !important;
}

#page-body {
  padding: 0;
}

.box-header .bg {
  background-color: #000;
  position: relative;
  padding: 10px 16px;
  color: #fff;
  line-height: 1.375rem;
  overflow: hidden;
}
.box-header .bg::after, .box-header .bg::before {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
}
.box-header .bg::after {
  width: 130px;
  height: 90px;
  background-color: #fff;
  border-radius: 65px 0 0 0;
  right: -65px;
  bottom: -50px;
  display: none;
}
.box-header .bg::before {
  width: 150px;
  height: 100px;
  background-color: #CC0000;
  border-radius: 0 100px 0 0;
  left: 0;
  top: 0;
}
.box-header .bg .sbtitle {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}
.box-header .bg .sbtitle .icon {
  margin-right: 16px;
  min-width: 27px;
}
.box-header .bg .sbtitle span,
.box-header .bg .sbtitle .h-text {
  font-size: 1.125rem;
  font-weight: bold;
}

.truncate {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box-space {
  margin-bottom: 10px;
}

.apk-image {
  display: block;
  position: relative;
  overflow: hidden;
}
.apk-image:hover img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}
.apk-image::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: rotate(0);
  background: rgba(0, 0, 0, 0.5);
}
.apk-image img {
  display: block;
  margin: 0;
  width: 100%;
}
.apk-image .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 16px;
  color: #fff;
}
.apk-image .info .title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.apk-image .info .author {
  margin-bottom: 10px;
  font-size: 0.875rem;
}
.apk-image .info .version {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
}
.apk-image .info .version .flash {
  font-size: 0.75rem;
  margin: 0 3px;
}
.apk-image .info .version span,
.apk-image .info .version svg {
  display: inline-block;
  vertical-align: middle;
}
.apk-image .info .version svg {
  margin-right: 3px;
}

.apk-icon {
  display: flex;
  background: #FFFFFF;
  border-radius: 15px;
  flex-direction: column;
  padding: 25px 15px 15px;
  border: 1px solid #e5e7eb;
  position: relative;
}
.apk-icon::after {
  content: "";
  display: block;
  clear: both;
}
.apk-icon:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
.apk-icon:hover .thumb img {
  transform: scale(1.05);
  transition: all 0.5s linear;
}
.apk-icon .thumb {
  display: block;
  float: left;
  aspect-ratio: 96/96;
  min-width: 96px;
  width: 96px;
  align-self: center;
  position: relative;
}
.apk-icon .thumb img {
  display: block;
  max-width: 100%;
  height: 100%;
  border-radius: 15px;
}
.apk-icon .thumb .mod {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(239, 68, 68);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 8px;
  color: white;
}
.apk-icon .info {
  margin-left: 6px;
  color: #000;
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-evenly;
  max-width: calc(100% - 76px);
}
.apk-icon .info .title {
  font-weight: 600;
  font-size: 20px;
}
.apk-icon .info .ctVersionSize {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.apk-icon .info .author,
.apk-icon .info .mod,
.apk-icon .info .version {
  font-weight: 400;
  font-size: 10px;
  background: rgba(235, 84, 24, 0.2);
  border-radius: 3px;
  color: #EB5418;
  width: fit-content;
  padding: 1px 10px;
}
.apk-icon .info .modText {
  color: #066988;
  font-weight: 600;
  font-size: 10px;
}
.apk-icon .info .version svg {
  width: 13px;
  height: 11px;
}
.apk-icon .info .ctDownloadText {
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.apk-icon .info .downloadText {
  position: relative;
  background: linear-gradient(180deg, #35A1BC 0%, #066988 100%);
  border-radius: 6px;
  font-weight: 600;
  font-size: 10px;
  color: white;
  padding: 5px 10px;
  align-self: center;
  margin-right: 15px;
}
.apk-icon .title {
  text-align: center;
  font-weight: 600;
  color: #1f2937;
  margin-top: 1.25rem;
  overflow: hidden;
  overflow-wrap: break-word;
  white-space: break-spaces;
}
.apk-icon .ctCate {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
}
.apk-icon .cate {
  text-align: center;
  color: #35a1bc;
  font-size: 13px;
  margin-top: 5px;
}
.apk-icon .ctBottom {
  display: flex;
  margin-top: 1.25rem;
}
.apk-icon .ctBottom .ctVersion {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #8b959e;
  flex: 1;
  padding: 5px 0;
}
.apk-icon .ctBottom .ctVersion svg {
  height: 1em;
}
.apk-icon .ctBottom .ctVersion svg path {
  fill: #8b959e;
}
.apk-icon .ctBottom .ctVersion p {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 5px;
}
.apk-icon .ctBottom .ctSize {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #8b959e;
  flex: 1;
  padding: 5px 0;
}
.apk-icon .ctBottom .ctSize svg {
  height: 1em;
}
.apk-icon .ctBottom .ctSize svg path {
  fill: #8b959e;
}
.apk-icon .ctBottom .ctSize p {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-top: 5px;
}
.apk-icon .ctBottom .line {
  width: 0.5px;
  background-color: #e6e6e6;
}
.apk-icon .updated {
  position: absolute;
  top: 5px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.apk-icon .updated .dot {
  width: 8px;
  height: 8px;
  background-color: rgba(53, 161, 188, 0.4901960784);
  border-radius: 4px;
}
.apk-icon .updated .textUpdated {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

.page_single_new .entry.active {
  display: inherit;
}
.page_single_new .thumb_title {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.page_single_new .thumb_title .thumb {
  width: 85px;
  height: 85px;
  min-width: 85px;
  border-radius: 15px;
  overflow: hidden;
}
.page_single_new .thumb_title .thumb img {
  width: 100%;
  height: 100%;
}
.page_single_new .thumb_title .content {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page_single_new .thumb_title .title {
  font-size: 18px;
  line-height: 25px;
  color: inherit;
}
.page_single_new .thumb_title a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1a73e8;
  margin-left: 12px;
}
.page_single_new .thumb_title .developer {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: auto;
}
.page_single_new .thumb_title .cate {
  position: relative;
}
.page_single_new .thumb_title .cate::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background: #1bbc9b;
  display: block;
}
.page_single_new .table_single {
  margin: 15px 0;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
  filter: drop-shadow(0 1px 15px #eee);
}
.page_single_new .table_single .table_info {
  width: 100%;
}
.page_single_new .table_single .table_info svg {
  display: none;
}
.page_single_new .table_single .table_info th,
.page_single_new .table_single .table_info td {
  padding: 5px 0;
}
.page_single_new .table_single .table_info tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page_single_new .table_single .table_info .chplay svg {
  display: block !important;
}
.page_single_new .table_single .table_info .chplay a {
  display: flex;
}
.page_single_new .table_single .table_info .chplay th svg {
  display: none !important;
}
.page_single_new .table_single .table_info th {
  text-align: left;
  font-size: 13px;
  color: #646f78;
}
.page_single_new .table_single .table_info td {
  text-align: right;
  color: #4c5462;
  font-size: 14px;
}
.page_single_new .table_single .table_info tr:last-child svg {
  display: block;
  fill: #4caf50;
  width: 18px;
  height: 18px;
}
.page_single_new .table_single .table_info tr:last-child td {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.page_single_new .table_single .table_info tr:last-child th,
.page_single_new .table_single .table_info tr:last-child td {
  height: 30px;
}
.page_single_new .table_single a {
  color: #1A73D6;
  font-weight: bold;
  max-width: 100%;
  overflow: hidden;
  max-width: 45vw;
  width: 45vw;
  justify-content: flex-end;
  width: fit-content;
  margin-left: auto;
  display: inline-block;
  text-overflow: ellipsis;
}
.page_single_new .btn_download {
  margin: 15px 0;
}
.page_single_new .btn_download a {
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #1bbc9b;
  border-radius: 50px;
}
.page_single_new .btn_download a span {
  color: white;
}
.page_single_new .btn_download a svg {
  width: 15px;
  height: 15px;
}
.page_single_new .btn_download a svg path {
  fill: white;
}
.page_single_new .apk_content > * {
  margin-bottom: 16px;
}
.page_single_new .apk_content p {
  line-height: 1.8;
  color: #212121;
  font-style: inherit;
  text-rendering: auto;
  font-size: 16px;
  font-weight: 350;
  box-sizing: inherit;
  margin-block-end: 1.5em;
  text-align: justify;
}

.apk-icon2 {
  border-radius: 15px;
  margin: 10px;
  display: block;
}
.apk-icon2::after {
  content: "";
  display: block;
  clear: both;
}
.apk-icon2:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
.apk-icon2:hover .thumb img {
  transform: scale(1.05);
  transition: all 0.5s linear;
}
.apk-icon2 .type2 {
  background: #EB5418;
}
.apk-icon2 .type2 .bgModText {
  background: white !important;
}
.apk-icon2 .type2 .bgModText .modText {
  border: 2px solid #1DC3EB !important;
}
.apk-icon2 .type1 {
  background: #35A1BC;
}
.apk-icon2 .ctAll {
  border-radius: 15px;
  padding-top: 40px;
  margin-top: -40px;
  padding: 40px 4px 4px;
  color: white;
  text-align: center;
}
.apk-icon2 .ctAll .bgModText {
  background: linear-gradient(180deg, #82E3FA 0%, #1DC3EB 100%);
  border-radius: 13px;
  padding: 2px;
  margin-top: 2px;
}
.apk-icon2 .ctAll .bgModText .modText {
  font-weight: 700;
  border: 2px solid white;
  border-radius: 13px;
  color: #EB5418;
  font-size: 10px;
}
.apk-icon2 .thumb {
  display: block;
  overflow: hidden;
  width: 80px;
  max-width: 90%;
  margin: 0 auto;
}
.apk-icon2 .thumb .type1 {
  border: 3px solid #62DFFF;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.apk-icon2 .thumb .type2 {
  border: 3px solid #FFB598;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.apk-icon2 .thumb img {
  width: 80px;
  display: block;
}
.apk-icon2 .title {
  font-weight: 700;
  font-size: 10px;
  margin-top: 5px;
}
.apk-icon2 .ctVersionSize {
  font-weight: 500;
  font-size: 8px;
  display: flex;
  justify-content: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.apk-icon2 .ctVersionSize .version {
  margin-top: 2px;
  flex: 1;
  text-align: end;
  border-right: solid 1px white;
  margin-right: 5px;
  padding-right: 5px;
}
.apk-icon2 .ctVersionSize .mod-feature {
  margin-top: 2px;
  flex: 1;
  text-align: start;
}

.secbox .sbheader {
  margin-bottom: 25px;
}

.owl-carousel {
  position: relative;
}
.owl-carousel .owl-dots {
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: transparent;
  border: 1px solid rgba(119, 119, 119, 0.5);
}
.owl-carousel .owl-dots .owl-dot:hover, .owl-carousel .owl-dots .owl-dot.active {
  background-color: #777;
}
.owl-carousel .owl-nav {
  display: none;
}
.owl-carousel .owl-nav button {
  display: block;
  position: absolute;
  top: 40%;
  width: 35px;
  height: 35px;
  background: url("/assets/image/nav-slide-arrow.png") no-repeat center center !important;
  background-size: 35px 35px !important;
  border-radius: 50px;
  z-index: 5;
}
.owl-carousel .owl-nav button.owl-prev {
  left: 15px;
}
.owl-carousel .owl-nav button.owl-next {
  transform: rotate(180deg);
  right: 15px;
}
.owl-carousel .owl-nav button span {
  display: none;
}
.owl-carousel.slideapk .owl-dots {
  margin-bottom: 10px;
}

.ads {
  background: #eee;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  border-radius: 2px;
}
.ads p {
  text-align: center;
  color: #000;
}

.adsx {
  margin-top: 12px;
}

.table-res {
  max-width: 100%;
  overflow-x: auto;
}

#table-other-vers {
  max-height: 460px;
  overflow: hidden;
  position: relative;
}
#table-other-vers.open {
  height: fit-content;
  max-height: none;
}
#table-other-vers.open .btnSeeMore {
  display: none;
}
#table-other-vers .btnSeeMore {
  position: absolute;
  cursor: pointer;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1bbc9b;
  border-radius: 4px;
  padding-left: 8px;
  padding-right: 8px;
}
#table-other-vers .btnSeeMore:hover {
  opacity: 0.75;
}
#table-other-vers .btnSeeMore span {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}
#table-other-vers .btnSeeMore svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}
#table-other-vers .btnSeeMore svg path {
  fill: #fff;
}

.wrapcontent {
  line-height: 1.8;
  color: #4b5563;
}
.wrapcontent > * {
  margin-bottom: 16px;
}
.wrapcontent p {
  word-break: inherit;
}
.wrapcontent h2,
.wrapcontent h3,
.wrapcontent h4,
.wrapcontent h5,
.wrapcontent h6 {
  line-height: 1.4em;
}
.wrapcontent ol,
.wrapcontent ul {
  margin-left: 20px;
}
.wrapcontent table {
  margin: 20px auto;
  border-collapse: collapse;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
}
.wrapcontent table thead th {
  background: #000;
  color: #fff;
  padding: 10px;
}
.wrapcontent table tbody tr td {
  padding: 8px 10px;
}
.wrapcontent table tbody tr:nth-child(even) td {
  background: #ECEAEA;
}
.wrapcontent table tbody tr:hover td {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.05);
}
.wrapcontent a {
  word-break: break-all;
}
.wrapcontent a:visited {
  color: #1A73D6;
}
.wrapcontent blockquote {
  border-left: 4px solid #1A73D6;
  padding: 16px 0 16px 20px;
  font-style: italic;
  background-color: rgba(0, 0, 0, 0.04);
}

.sbhomeseo .sbheader {
  text-align: center;
}
.sbhomeseo .sbheader .sitename {
  font-size: 2.25rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}
.sbhomeseo .sbheader h1 {
  font-size: 2em;
}
.sbhomeseo .sbbody {
  padding: 10px 0;
}

.pagination {
  text-align: center;
}
.pagination .seemoreapk {
  display: inline-block;
  padding: 5px 25px;
  margin: 10px auto;
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
}
.pagination .seemoreapk svg {
  margin-left: 5px;
}
.pagination .seemoreapk:hover {
  background-color: #000;
  color: #fff;
  transition: all 0.5s ease;
}
.pagination .seemoreapk:hover svg,
.pagination .seemoreapk:hover svg path {
  fill: #fff;
}
.pagination ul {
  list-style: none;
  display: inline-block;
  margin-left: 0;
  margin-top: 5px;
}
.pagination ul li {
  color: #35A1BC;
  float: left;
  margin: 0 3px;
}
.pagination ul li .arrow {
  border: none;
}
.pagination ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border: 1px solid #707070;
  background-color: transparent;
  color: #1bbc9b;
  border-radius: 50%;
  text-decoration: none;
  border: 0.5px solid #1bbc9b;
  font-size: 10px;
  font-weight: 500;
  width: 24px;
  height: 24px;
}
.pagination ul li a svg {
  width: 8px;
}
.pagination ul li:hover a, .pagination ul li.active a {
  background-color: #1bbc9b;
  color: #fff;
}
.pagination ul li:hover a svg,
.pagination ul li:hover a svg path, .pagination ul li.active a svg,
.pagination ul li.active a svg path {
  fill: #fff;
  stroke: #fff;
}
.pagination ul li .plus {
  line-height: 25px;
  padding: 0 2px;
  font-size: 20px;
  color: #555;
}
.pagination ul::after {
  content: "";
  display: block;
  clear: both;
}

.apks3 {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.apks3 li {
  width: 50%;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 12px;
  display: flex;
}
.apks3 li .apk-image,
.apks3 li .apk-image::after {
  overflow: hidden;
}
.apks3 li .apk-icon {
  display: flex;
  flex-grow: 1;
}

.apks {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -10px;
  margin-right: -10px;
}
.apks li {
  margin-bottom: 20px;
  width: 33.33333%;
}
.apks li .apk-image,
.apks li .apk-image::after {
  overflow: hidden;
}

.apk {
  display: block;
  border: 1px solid #aaa;
  border-radius: 2px;
}
.apk:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}
.apk:hover .info .title {
  color: #1A73D6;
}
.apk:hover .thumb img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.apk .thumb {
  display: block;
  overflow: hidden;
}
.apk .thumb img {
  display: block;
  width: 100%;
  transition: all 0.5s ease;
}
.apk .info {
  padding: 16px;
}
.apk .info .title {
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.apk .info .author {
  font-size: 14px;
  margin-bottom: 10px;
  color: #707070;
}
.apk .info .version > * {
  display: inline-block;
  vertical-align: middle;
}
.apk .info .version svg {
  width: 16px;
  height: 14px;
  margin-right: 5px;
  transition: all 0.3s ease;
}
.apk .info .version svg:hover {
  cursor: pointer;
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.apk .info .version svg:hover path {
  fill: #1A73D6;
}
.apk .permalink {
  display: block;
  text-align: center;
  padding: 7px 0;
  font-weight: bold;
}
.apk .permalink .icon {
  margin-right: 15px;
}

#adminBar {
  position: fixed;
  left: 0;
  bottom: 155px;
  background: transparent;
  z-index: 9;
  padding: 0 20px;
  text-align: center;
}
#adminBar a {
  color: #fff;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  background: red;
  margin: 4px;
  border-radius: 3px;
  padding: 0 10px;
}
#adminBar a:hover {
  opacity: 0.7;
}

.blogs {
  list-style: none;
  margin: 0;
}
.blogs li {
  margin-bottom: 10px;
}

.blog {
  display: block;
  box-shadow: 0 5px 10px rgba(112, 112, 112, 0.16);
  overflow: hidden;
}
.blog:hover {
  transition: all 0.5s ease;
}
.blog:hover .info .title {
  color: #1A73D6;
}
.blog:hover .thumb {
  transform: scale(1.05);
  transition: all 0.5s ease;
}
.blog .thumb {
  display: block;
  width: 100%;
  height: 170px;
  transition: all 0.5s ease;
}
.blog .info {
  padding: 10px 16px;
}
.blog .info .title {
  display: block;
  font-size: 1rem;
  color: #000000;
  overflow: hidden;
}
.blog.search .info .title {
  height: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-weight: bold;
}
.blog.search .info .time {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #777;
}
.blog.search .info .time svg {
  margin-right: 8px;
  fill: #777;
}

.breadcumb {
  border-radius: 0.25rem;
  width: fit-content;
  align-self: center;
}
.breadcumb ul {
  list-style: none;
  margin: 0;
  white-space: nowrap;
  overflow-x: auto;
}
.breadcumb ul li {
  display: inline-block;
  padding-right: 8px;
}
.breadcumb ul li::after,
.breadcumb ul li a,
.breadcumb ul li span {
  vertical-align: middle;
  color: #c9edf8;
}
.breadcumb ul li::after {
  content: "/";
  margin-left: 8px;
  font-size: 11px;
  width: 2px;
  height: 70%;
  color: #e6e6e6;
}
.breadcumb ul li:last-child::after {
  display: none;
}
.breadcumb ul li a,
.breadcumb ul li span {
  color: rgb(243 244 246/var(--tw-text-opacity));
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1rem;
}
.breadcumb ul li a:hover {
  color: #1bbc9b;
}
.breadcumb ul li a svg {
  height: 1em;
}

.sort-controls {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 12px;
  margin-top: 9px;
  background-color: white;
  border-radius: 8px;
}
.sort-controls li {
  flex: 1;
}
.sort-controls li:first-child a {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.sort-controls li:last-child a {
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
}
.sort-controls li a {
  display: block;
  padding: 6px 16px;
  border: 0.5px solid rgba(112, 112, 112, 0.15);
  text-transform: capitalize;
  text-align: center;
  color: #000;
  transition: background 0.5s ease;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  flex: 1;
}
.sort-controls li:hover a, .sort-controls li.active a {
  background: #35A1BC;
  color: #fff;
  transition: background 0.5s ease;
}

.page-title {
  font-size: 1.625rem;
  font-weight: bold;
}

.page-author {
  color: #707070;
}

.linkBlogWrp {
  display: flex;
  justify-content: center;
}
.linkBlogWrp .linkBlog {
  color: #1bbc9b;
  text-decoration: underline;
  margin-bottom: 10px;
}

.box-sidebar {
  max-width: 450px;
  margin: 0 auto;
}
.box-sidebar .bs-header {
  background: #000;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 16px;
}
.box-sidebar .bs-body {
  border: 1px solid #707070;
  border-top: none;
  padding: 16px 0;
}
.box-sidebar .bs-body::-webkit-scrollbar {
  width: 12px;
}
.box-sidebar .bs-body::-webkit-scrollbar-track {
  background: #eee;
}
.box-sidebar .bs-body::-webkit-scrollbar-thumb {
  background: #aaa;
}

.bsc-list {
  list-style: none;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.bsc-list li {
  padding: 8px 10px;
  width: 50%;
  box-sizing: border-box;
}
.bsc-list li a {
  display: block;
  font-size: 0.875rem;
  color: #000;
  white-space: nowrap;
  word-break: break-word;
  overflow: hidden;
}
.bsc-list li a svg,
.bsc-list li a span {
  display: inline-block;
  vertical-align: middle;
}
.bsc-list li a svg {
  min-width: 40px;
}
.bsc-list li a:hover {
  color: #1A73D6;
}

.bsc-list2 {
  list-style: none;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.bsc-list2 a {
  width: 33%;
  display: block;
  color: #000;
  white-space: nowrap;
  word-break: break-word;
  overflow: hidden;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 400;
  display: flex;
}
.bsc-list2 a svg,
.bsc-list2 a span {
  display: inline-block;
  vertical-align: middle;
  white-space: break-spaces;
}
.bsc-list2 a svg {
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
.bsc-list2 a:hover {
  color: #1A73D6;
}

.accordion {
  border-radius: 5px;
  overflow: hidden;
  margin-top: 34px;
}
.accordion .ahead {
  line-height: 30px;
  padding: 0 10px;
  user-select: none;
  cursor: pointer;
  font-weight: bold;
  background-color: rgba(217, 217, 217, 0.33);
}
.accordion .ahead svg path {
  fill: #000;
}
.accordion .ahead span,
.accordion .ahead svg {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
}
.accordion .ahead .toggle {
  float: right;
  margin-top: 10px;
  margin-left: 20px;
  transform: rotate(180deg);
}
.accordion .ahead span {
  font-weight: 600;
  font-size: 14px;
  color: #4c5462;
}
.accordion.open {
  background: white;
}
.accordion.open .abody {
  display: block;
}
.accordion.open .toggle {
  transform: rotate(0deg);
}
.accordion .abody {
  display: none;
  padding: 10px;
  border-radius: 0 0 5px 5px;
  font-size: 12px;
  font-weight: 400;
}
.accordion .abody a {
  padding: 8px 0;
  color: #000;
}
.accordion .abody a:hover {
  color: #1A73D6;
}
.accordion .abody a.lvl-hh {
  margin-left: 20px;
}
.accordion .abody a.lvl-hhh {
  margin-left: 40px;
}
.accordion .abody a.lvl-hhhh {
  margin-left: 60px;
}
.accordion .abody a .icon {
  margin-right: 8px;
}
.accordion .abody ul,
.accordion .abody ol {
  margin-left: 25px;
}
.accordion .abody ul li,
.accordion .abody ol li {
  margin-bottom: 8px;
}

.tnvToc {
  border-radius: 5px;
  overflow: hidden;
}
.tnvToc a {
  display: block;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table tbody tr:nth-child(odd) th,
.table tbody tr:nth-child(odd) td {
  background-color: #ECEAEA;
}
.table td {
  padding: 5px 10px;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right;
}

.btn-download {
  position: relative;
  text-transform: capitalize;
  max-width: 100%;
  background: #18a3c5;
  border-radius: 16px;
  display: flex;
  padding: 0;
  color: white;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.btn-download:visited {
  color: white;
}
.btn-download.btnTelegram {
  background-color: #039be5;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 20px;
}
.btn-download.btnTelegram:hover {
  opacity: 0.75;
}
.btn-download svg {
  height: 1em;
  width: 1em;
  margin-right: 0.5rem;
}
.btn-download:hover {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.btn-download .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.page-single .entry-apk-rating::after {
  content: "";
  display: block;
  clear: both;
}
.page-single .entry-apk-rating .page-title {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}
.page-single .entry-apk-rating .thumb img {
  display: block;
  width: 100px;
  border-radius: 5px;
  margin: 0 auto 10px auto;
}
.page-single .entry-apk-rating .info {
  text-align: center;
}
.page-single .entry-apk-rating .info .rating {
  display: inline-block;
  line-height: 1;
  margin-bottom: 10px;
  white-space: nowrap;
}
.page-single .entry-apk-rating .info .rating .box-stars,
.page-single .entry-apk-rating .info .rating .label {
  display: inline-block;
}
.page-single .entry-apk-rating .info .rating .box-stars {
  position: relative;
  font-size: 22px;
  color: #707070;
  margin-right: 8px;
}
.page-single .entry-apk-rating .info .rating .box-stars .over {
  position: absolute;
  top: 0;
  left: 0;
  color: #FFD400;
  overflow: hidden;
}
.page-single .entry-apk-rating .info .rating .label .ratingValue {
  font-size: 1.125rem;
  font-weight: bold;
  color: #FA4C2A;
}
.page-single .entry-apk-rating .info .relatorio {
  font-size: 12px;
}
.page-single .entry-apk-rating .info .relatorio svg,
.page-single .entry-apk-rating .info .relatorio span {
  display: inline-block;
  vertical-align: middle;
}
.page-single .entry-apk-rating .info .relatorio:hover {
  cursor: pointer;
  color: #1A73D6;
}
.page-single .entry-apk-rating .info .relatorio:hover svg,
.page-single .entry-apk-rating .info .relatorio:hover svg circle {
  fill: #1A73D6;
}
.page-single .entry-thumb img {
  margin: auto;
}
.page-single .box-discord {
  margin-bottom: 50px;
}

.stars {
  font-size: 20px;
  position: relative;
}
.stars::after,
.stars .score {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  transform: translateY(-50%);
}
.stars::after {
  display: block;
  content: "★ ★ ★ ★ ★";
  color: #ddd;
  right: 0;
  z-index: 1;
}
.stars .score {
  color: #F3AF0C;
  overflow: hidden;
  z-index: 2;
}

.rating-bar {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.rating-bar > input {
  display: none;
}

.rating-bar > label {
  float: right;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.rating-bar > label svg {
  height: 20px;
  width: 20px;
}

.rating-bar > input:checked ~ label svg path,
.rating-bar > input:checked ~ label ~ label svg path {
  fill: #35a1bc;
  stroke: #35a1bc;
}

.rating-bar > input:not(:checked) ~ label:hover svg path,
.rating-bar > input:not(:checked) ~ label:hover ~ label svg path {
  fill: #35a1bc;
  stroke: #35a1bc;
}

#comments .rating-detail {
  margin-bottom: 16px;
  margin-top: 20px;
}
#comments .rating-detail .rt-l {
  text-align: center;
  margin-bottom: 20px;
}
#comments .rating-detail .rt-l .score {
  font-size: 2.1429rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1em;
  color: #FA4C2A;
}
#comments .rating-detail .rt-l .info {
  width: 100%;
  margin: 0 auto;
}
#comments .rating-detail .rt-l .info div span {
  margin-left: 10px;
}
#comments .rating-detail .rt-l .info div:last-child {
  color: #707070;
}
#comments .rating-detail .rt-r {
  padding: 0 35px;
  box-sizing: border-box;
}
#comments .rating-detail .rt-r .line {
  font-weight: 400;
  height: 20px;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
  color: #707070;
}
#comments .rating-detail .rt-r .line .title {
  display: flex;
  align-items: center;
  position: absolute;
  left: -35px;
  text-align: left;
}
#comments .rating-detail .rt-r .line .title span {
  margin-right: 3px;
}
#comments .rating-detail .rt-r .line .score {
  transition: width 0.25s ease;
  display: inline-block;
  height: 100%;
  opacity: 0.8;
  min-width: 0.5%;
  border-radius: 50px;
}
#comments .rating-detail .rt-r .line .score.score-5 {
  background: #57BB8A;
}
#comments .rating-detail .rt-r .line .score.score-4 {
  background: #9ACE6A;
}
#comments .rating-detail .rt-r .line .score.score-3 {
  background: #FFCF02;
}
#comments .rating-detail .rt-r .line .score.score-2 {
  background: #FF9F02;
}
#comments .rating-detail .rt-r .line .score.score-1 {
  background: #FF6F31;
}
#comments .rating-detail .rt-r .line .count {
  letter-spacing: 1px;
  position: absolute;
  margin-left: 5px;
}
#comments .rating-detail .rt-r .line .title,
#comments .rating-detail .rt-r .line .count {
  line-height: 15px;
}
#comments .rating-detail .rt-r .line:last-child {
  margin-bottom: 0;
}
#comments .form-comment {
  margin-bottom: 20px;
}
#comments .form-comment label {
  display: block;
  margin-bottom: 10px;
  color: #4b5563;
  font-size: 14px;
  margin-top: 10px;
}
#comments .form-comment label .mark {
  color: #CC0000;
  font-weight: normal;
}
#comments .form-comment textarea {
  width: 100%;
  padding: 10px;
  display: block;
  box-sizing: border-box;
  outline: none;
  height: 96px;
  appearance: none;
  border: 1px solid #e5e7eb;
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-radius: 0.5rem;
}
#comments .form-comment .btn-submit {
  background-color: #000;
  color: #fff;
  border-color: transparent;
  float: right;
  background-color: #1bbc9b;
  color: #fff;
  border-color: transparent;
  float: right;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 14px;
}
#comments .form-comment .btn-submit:hover {
  opacity: 0.8;
}
#comments .holder-comments .lc-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
}
#comments .holder-comments .lc-head .lch-sort {
  z-index: 5;
}
#comments .holder-comments .lc-head .lch-sort .dd-toggle {
  color: #1653FC;
}
#comments .holder-comments .lc-head .lch-sort .dd-toggle::after {
  border-color: #1653FC;
}
#comments .holder-comments .lc-head .lch-sort .dd-content {
  right: inherit;
  left: 0;
  list-style: none;
  margin-left: 0;
  padding: 8px 0;
  background-color: rgba(217, 217, 217, 0.33);
  box-shadow: none;
  border-radius: 3px;
}
#comments .holder-comments .lc-head .lch-sort .dd-content li {
  padding: 5px 16px;
}
#comments .holder-comments .lc-head .lch-sort .dd-content li a {
  color: #000000;
  white-space: nowrap;
}
#comments .holder-comments .lc-head .lch-sort .dd-content li a:hover {
  color: #1653FC;
}
#comments .holder-comments .lc-head .summary {
  color: #1653FC;
}
#comments .holder-comments .lch-body {
  padding: 30px 0;
}
#comments .holder-comments .lch-body .wraploadmore {
  margin-left: 46px;
}

.list-comments {
  list-style: none;
  margin-left: 0;
}
.list-comments ul {
  list-style: none;
  margin-left: 0;
}
.list-comments li .avatar {
  display: block;
  float: left;
  height: 30px;
  width: 30px;
  border-radius: 50px;
}
.list-comments li .info {
  padding-left: 40px;
}
.list-comments li .info .user,
.list-comments li .info .content {
  margin-bottom: 10px;
}
.list-comments li .info .wraploadmore,
.list-comments li .info .links {
  margin-bottom: 20px;
}
.list-comments li .info .user {
  display: flex;
  align-items: center;
}
.list-comments li .info .user .name {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1653FC;
  margin-right: 15px;
}
.list-comments li .info .links {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  max-width: 100%;
  overflow-x: auto;
}
.list-comments li .info .links li {
  position: relative;
  padding-right: 12px;
  margin-right: 14px;
  color: #8A8888;
  white-space: nowrap;
}
.list-comments li .info .links li a {
  display: flex;
  align-items: center;
  color: #8A8888;
}
.list-comments li .info .links li a:hover {
  color: #1A73D6;
}
.list-comments li .info .links li a:hover svg,
.list-comments li .info .links li a:hover svg path {
  fill: #1A73D6;
}
.list-comments li .info .links li a small {
  font-size: 1em;
}
.list-comments li .info .links li a.unlike {
  color: #3689F5;
}
.list-comments li .info .links li a.unlike svg,
.list-comments li .info .links li a.unlike svg path {
  fill: #3689F5;
}
.list-comments li .info .links li:last-child::after {
  display: none;
}
.list-comments li .info .links li::after {
  display: block;
  content: "";
  height: 12px;
  width: 1px;
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: #8A8888;
}

.btn-discord {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  background-color: #007BFF;
  border-color: #007BFF;
  color: #fff;
  font-size: 0.875rem;
  padding: 8px 20px;
  box-sizing: border-box;
  text-align: left;
  margin: 0 auto;
}
.btn-discord .icon {
  margin-right: 16px;
}
.btn-discord:hover {
  opacity: 0.8;
}
.btn-discord:visited {
  color: #fff;
}

.btn-seemore {
  color: #3689F5;
}
.btn-seemore::before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 8px;
  border-bottom: 2px solid #707070;
  border-left: 2px solid #707070;
  transform: rotate(-45deg) translateY(-3px);
  margin-right: 10px;
}
.btn-seemore:hover {
  color: #1A73D6;
}

.box-cross {
  display: block;
}
.box-cross .bg {
  background: linear-gradient(180deg, #42DAFF 0%, #32AFCE 100%);
  border-radius: 24.7289px;
  padding: 3px;
}
.box-cross .bc-title {
  border: 1px solid #FFFFFF;
  border-radius: 24.7289px;
  padding: 10px;
  color: #1bbc9b;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}
.box-cross .ctTitleDesc {
  width: fit-content;
  margin: 0 auto;
}
.box-cross .ctTitleDesc .modDesc {
  line-height: 1.8;
  color: #4b5563;
  font-style: italic;
  margin-bottom: 5px;
}
.box-cross .ctTitleDesc .modDesc ul {
  list-style: none;
  margin-left: 10px;
}
.box-cross .ctTitleDesc .modDesc ul li:before {
  content: "-";
  display: inline-block;
  margin-right: 10px;
}

.wrap-box-mod {
  font-size: 14px;
  padding: 15px 0px;
  display: flex;
  flex-direction: column;
}
.wrap-box-mod .ctIcRow {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-top: 10px;
}
.wrap-box-mod .ctIcRow .links {
  width: 100%;
}
.wrap-box-mod .ctIcRow .links .modTitle {
  color: #EB5418;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.wrap-box-mod ul,
.wrap-box-mod ol {
  margin-left: 40px;
}
.wrap-box-mod ul li,
.wrap-box-mod ol li {
  margin-bottom: 5px;
}
.wrap-box-mod ul {
  margin-left: 24px;
  list-style: none;
}
.wrap-box-mod ul li {
  font-style: italic;
}
.wrap-box-mod ul li::before {
  content: "-";
  display: inline-block;
  margin-right: 10px;
}
.wrap-box-mod .icDownload {
  float: left;
  margin-right: 15px;
}
.wrap-box-mod .links .item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: #1bbc9b;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid #1bbc9b;
}
.wrap-box-mod .links .item:hover {
  opacity: 0.8;
}
.wrap-box-mod .links .item:last-child {
  margin-bottom: 0;
}
.wrap-box-mod .links .item svg {
  width: 20px;
  height: 20px;
}
.wrap-box-mod .links .item svg path {
  fill: #fff;
}
.wrap-box-mod .links .item .modTitle {
  height: 100%;
  padding-left: 10px;
  color: #fff;
}

.mod-accordion {
  border: 1px solid rgba(53, 161, 188, 0.4901960784);
  border-radius: 8px;
}
.mod-accordion.open {
  border-color: rgba(53, 161, 188, 0.4901960784);
}
.mod-accordion.open .ahead {
  background-color: transparent;
}
.mod-accordion .ahead {
  position: relative;
  padding: 12px 10px;
  background-color: transparent;
  line-height: 1rem;
  height: auto;
  font-weight: normal;
}
.mod-accordion .ahead .toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.mod-accordion .abody {
  padding: 0;
}
.mod-accordion .abody a {
  padding: 8px 0;
}

.box-faq {
  position: relative;
}
.box-faq .bfaq-head .item {
  display: block;
  border: 1px solid #707070;
  padding: 8px 10px;
  font-weight: bold;
  margin-bottom: 2px;
  cursor: pointer;
}
.box-faq .bfaq-head .item.open {
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.box-faq .bfaq-body .item {
  position: relative;
  display: none;
}
.box-faq .bfaq-body .item.open {
  display: block;
}
.box-faq .bfaq-body .item .box-showless {
  position: relative;
  border: 1px solid #707070;
  padding: 20px 10px 35px 10px;
}
.box-faq .bfaq-body .item .box-showless .bsl-toggle {
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: bold;
  min-width: 120px;
  height: 26px;
  line-height: 26px;
  padding: 0 16px;
  text-align: center;
  user-select: none;
  color: #1A73D6;
  border: 1px solid #1A73D6;
  border-radius: 50px;
  background-color: #fff;
  z-index: 2;
}
.box-faq .bfaq-body .item .box-showless .bsl-toggle:hover {
  cursor: pointer;
  background-color: #1A73D6;
  color: #fff;
  opacity: 1;
}
.box-faq .bfaq-body .item .box-showless .bsl-toggle::after {
  display: none;
}
.box-faq .bfaq-body .item .box-showless::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.box-showless.open .bsl-content {
  max-height: 100000px;
}
.box-showless.open .bsl-toggle::after {
  transform: rotate(225deg) translateY(0px);
  margin-left: 10px;
}
.box-showless .bsl-content {
  max-height: 140px;
  overflow: hidden;
}
.box-showless .bsl-toggle {
  display: inline-block;
  position: relative;
  color: #2680EB;
}
.box-showless .bsl-toggle:hover {
  cursor: pointer;
  opacity: 0.7;
}
.box-showless .bsl-toggle::after {
  content: "";
  display: inline-block;
  height: 5px;
  width: 5px;
  border-right: 2px solid #2680EB;
  border-bottom: 2px solid #2680EB;
  transform: rotate(45deg) translateY(-6px);
  margin-left: 5px;
}

.link-showmore {
  display: inline-block;
  position: relative;
  color: #2680EB;
}
.link-showmore:hover {
  cursor: pointer;
  opacity: 0.7;
}
.link-showmore::after {
  content: "";
  display: inline-block;
  height: 5px;
  width: 5px;
  border-right: 2px solid #2680EB;
  border-bottom: 2px solid #2680EB;
  transform: rotate(45deg) translateY(-6px);
  margin-left: 5px;
}

.bfaq-download2 {
  max-width: 820px;
  margin: 35px auto 60px auto;
}

.ringtones {
  list-style: none;
  margin-left: 0;
}
.ringtones li {
  margin-bottom: 10px;
}

.ringtone:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.ringtone .mp3 {
  display: block;
  position: relative;
  text-align: center;
  color: #fff;
  height: 165px;
  background: #2680EB url("/assets/image/play.jpg") no-repeat top center;
}
.ringtone .mp3 span {
  display: block;
  position: absolute;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  bottom: 10px;
  left: 0;
  right: 0;
  padding: 0 10px;
}
.ringtone .mp3.playing {
  background: #2680EB url("/assets/image/pause.jpg") no-repeat top center;
}
.ringtone .info {
  padding: 8px 20px;
  border: 1px solid #707070;
  display: flex;
  justify-content: space-between;
}
.ringtone .info .item {
  color: #000;
  font-size: 14px;
}
.ringtone .info .item span,
.ringtone .info .item svg {
  display: inline-block;
  vertical-align: middle;
}
.ringtone .info .item svg {
  margin-right: 3px;
  height: 15px;
}
.ringtone .info a.item:hover {
  color: #1A73D6;
}
.ringtone .info a.item:hover svg path {
  fill: #1A73D6;
}

.ringtonecontent .ringcate {
  color: #707070;
}
.ringtonecontent .ringcate span {
  text-transform: uppercase;
  font-size: 20px;
  color: #000;
}
.ringtonecontent .entry-share .a2a_kit {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow-x: auto;
}
.ringtonecontent .entry-share .a2a_kit a {
  margin-right: 15px;
  margin-bottom: 15px;
  border-radius: 3px;
  border-bottom: 2px solid #43609C;
  padding: 0 10px;
  height: 35px;
  line-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.ringtonecontent .entry-share .a2a_kit a svg {
  margin-right: 10px;
}
.ringtonecontent .entry-share .a2a_kit a.a2a_button_facebook {
  color: #43609C;
}
.ringtonecontent .entry-share .a2a_kit a.a2a_button_twitter {
  color: #03A9F4;
  border-color: #03A9F4;
}
.ringtonecontent .entry-share .a2a_kit a.a2a_button_linkedin {
  color: #0077B5;
  border-color: #0077B5;
}
.ringtonecontent .entry-share .a2a_kit a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-ringtone-vote {
  display: inline-block;
  border-color: transparent;
  background-color: #0077B5;
  border-radius: 3px;
  height: 25px;
  font-size: 0.875rem;
  color: #fff;
  padding: 0 10px;
  text-align: center;
}
.btn-ringtone-vote .count {
  margin-left: 5px;
}
.btn-ringtone-vote:hover {
  opacity: 0.8;
}

.audio-player .ap-top {
  background: #251A30 url("/assets/image/bg-audio.jpg") no-repeat top center;
  padding-bottom: 151px;
  margin-bottom: 15px;
}
.audio-player .ap-top #video {
  display: none;
}
.audio-player .controls {
  background-color: #fff;
}
.audio-player .controls .item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  max-width: 100%;
  overflow-x: auto;
}
.audio-player .controls .item .play,
.audio-player .controls .item .download,
.audio-player .controls .item .time,
.audio-player .controls .item div.downloadcount {
  margin-right: 10px;
}
.audio-player .controls .item .play,
.audio-player .controls .item .download {
  padding: 5px 10px;
  border-radius: 3px;
  white-space: nowrap;
  color: #000;
}
.audio-player .controls .item .play:hover,
.audio-player .controls .item .download:hover {
  color: #1A73D6;
}
.audio-player .controls .item .play:hover svg,
.audio-player .controls .item .play:hover svg path,
.audio-player .controls .item .download:hover svg,
.audio-player .controls .item .download:hover svg path {
  fill: #1A73D6;
}
.audio-player .controls .item .play .playing {
  display: none;
}
.audio-player .controls .item .play.runing .pause {
  display: none;
}
.audio-player .controls .item .play.runing .playing {
  display: inline-block;
}
.audio-player .controls .item .time {
  font-size: 0.75rem;
  white-space: nowrap;
}
.audio-player .controls .item .volumn {
  display: flex;
  align-items: center;
}
.audio-player .controls .item .volumn.muted .icon-muted {
  display: inline-block;
}
.audio-player .controls .item .volumn.muted .icon-loud {
  display: none;
}
.audio-player .controls .item .volumn .icon-muted {
  display: none;
}
.audio-player .controls .item .volumn .slider {
  width: 90px;
  height: 6px;
  background: #000000;
  outline: none;
  appearance: none;
  padding: 0;
  border: none;
  border-radius: 50px;
  margin-right: 7px;
}
.audio-player .controls .item .volumn .slider::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #00B7B9;
  cursor: pointer;
}
.audio-player .controls .item .volumn .slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #00B7B9;
  cursor: pointer;
}
.audio-player .controls .item div.btn-icon {
  white-space: nowrap;
  font-size: 14px;
}
.audio-player .controls .item div.btn-icon svg {
  height: 14px;
  margin-right: 0px;
}

.slideapk .apk-image img {
  height: 100%;
}

.box-slider {
  min-height: 200px;
}

#btn-page-scroll {
  position: fixed;
  bottom: 4px;
  right: 5px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  z-index: 15;
  background: #1bbc9b;
  border-radius: 2px;
  transform: translate3d(0, 70px, 0);
  transition: all 0.5s linear;
}
#btn-page-scroll svg {
  fill: #fff;
}
#btn-page-scroll:hover {
  cursor: pointer;
}
#btn-page-scroll.show {
  transform: translate3d(0, 0, 0);
  transition: all 0.5s linear;
}

#cookie-notice-bar {
  display: none;
  position: fixed;
  z-index: 15;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #232222;
  color: #fff;
  padding: 10px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  font-size: 14px;
}
#cookie-notice-bar.show {
  display: block;
}
#cookie-notice-bar .btnClose {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #1bbc9b;
  background-repeat: repeat-x;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 2px 10px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 4px;
}

.pagePopup {
  padding: 10px;
}
.pagePopup.open {
  visibility: inherit;
  opacity: 1;
  z-index: 99999;
}
.pagePopup .popup {
  position: relative;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 2.4rem;
  border-radius: 2px;
  background: #fff;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.25);
  max-width: 400px;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.pagePopup .popup .bigText {
  color: #333;
  font-weight: bold;
  font-size: 20px;
}
.pagePopup .popup .subText {
  padding: 20px 0;
}
.pagePopup .popup .subText .btnInLine {
  display: inline-block;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 20px;
  padding: 10px 45px;
  font-weight: bold;
  background-color: #1A73D6;
  border-color: #1A73D6;
  color: #fff;
}
.pagePopup .popup .close {
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 30px;
  line-height: 1em;
  color: #fff;
  background-color: red;
  text-align: center;
  border-radius: 50px;
  transition: all 200ms;
}
.pagePopup .popup .close:hover {
  color: #ddd;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}

.text-danger {
  color: #1A73D6 !important;
}

.text-success {
  color: #006600 !important;
}

.text-warning {
  color: #F3AF0C !important;
}

.msg {
  display: block;
  padding: 10px;
  border: 1px solid #707070;
  box-sizing: border-box;
  margin-bottom: 10px;
  border-radius: 3px;
  color: #777;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.msg::after {
  content: "x";
  display: block;
  position: absolute;
  top: 0;
  right: 7px;
  font-size: 12px;
  color: #aaa;
}

.msg-reply-holder {
  font-weight: bold;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  transform: scale(0.5);
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1A73D6;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#pageDownload2WrapButton {
  margin: 15px auto;
  display: inline-block;
  width: 100%;
}
#pageDownload2WrapButton .btn {
  display: none;
}
#pageDownload2WrapButton .counter {
  font-size: 3em;
  font-weight: bold;
  color: #1A73D6;
  text-align: center;
}
#pageDownload2WrapButton.done .btn {
  display: flex;
  align-items: center;
  color: white;
  max-width: 100%;
  background-color: #35a1bc;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  flex-direction: row;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
}
#pageDownload2WrapButton.done .btn:hover {
  opacity: 0.8;
}
#pageDownload2WrapButton.done .btn svg {
  width: 24px;
  height: 24px;
}
#pageDownload2WrapButton.done .btn span {
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  padding-right: 12px;
}
#pageDownload2WrapButton.done .counter {
  display: none;
}

.head-title-2 {
  font-size: 1.25rem;
  font-weight: bold;
}

.fef-wrap {
  position: relative;
  padding: 10px;
  margin: 0 auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background: #fff;
  width: auto;
  max-width: 362px;
  border-radius: 20px;
  z-index: 2;
}

.fe-form {
  color: #666;
}
.fe-form .fef-title {
  font-size: 1.5rem;
  font-weight: normal;
}
.fe-form .form-group {
  padding: 16px;
}
.fe-form .fg-input {
  position: relative;
  padding: 20px 0;
}
.fe-form .fg-input input {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 4px 0 4px 35px;
  width: 100%;
  font-size: 18px;
  box-sizing: border-box;
}
.fe-form .fg-input input:focus {
  outline: none;
}
.fe-form .fg-input input:focus + span::after {
  left: 0;
  visibility: visible;
  width: 100%;
  background-color: #1A73D6;
}
.fe-form .fg-input .icon {
  left: 0;
  top: 18px;
  width: 30px;
  height: 28px;
  position: absolute;
  transform: scale(0.8);
  fill: #dbdbdb;
}
.fe-form .fg-input .fgi-border::after {
  bottom: 20px;
  content: "";
  height: 2px;
  left: 45%;
  position: absolute;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  width: 10px;
}
.fe-form .fg-input .error {
  font-size: 12px;
  color: #ff4141;
  line-height: 12px;
}
.fe-form .btn-fef-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  width: 100%;
}
.fe-form .btn-fef-submit svg {
  fill: #fff;
  margin-right: 15px;
}

.fg-popup-error .alert {
  margin: 16px;
  padding: 5px 16px;
  border-radius: 5px;
}
.fg-popup-error .alert.alert-danger {
  color: #ff4141;
  border: 1px solid rgba(255, 34, 34, 0.2);
}
.fg-popup-error .alert.alert-success {
  color: #00b894;
  border: 1px solid #00b894;
}

.box {
  background: #fff;
  width: auto;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  margin-bottom: 10px;
}
.box .title {
  background: #fbfbfb;
  border-bottom: 1px solid #e8e8e8;
  height: 55px;
  line-height: 55px;
  color: #666;
  font-size: 18px;
  padding: 0px 10px;
  font-weight: 400;
  position: relative;
}
.box .box-content {
  padding: 10px;
}

.box-profile {
  max-width: 750px;
  margin: 30px auto;
}
.box-profile .box-content .bp-change-avatar {
  text-align: center;
  margin-bottom: 20px;
}
.box-profile .box-content .bp-change-avatar img {
  display: block;
  margin: 10px auto;
  border-radius: 100px;
  border: 1px solid #ddd;
  padding: 1px;
}
.box-profile .bu-nav {
  margin-left: 0;
}
.box-profile .bu-nav li {
  display: inline-block;
  font-size: 1rem;
  padding: 0 10px;
}
.box-profile .bu-nav li a {
  color: #000;
}
.box-profile .bu-nav li a:hover {
  color: red;
}
.box-profile .bu-nav li.active a {
  color: red;
}

.box-form {
  max-width: 500px;
  margin: 0px auto;
  padding: 20px 10px;
}
.box-form .bf-line {
  margin: 0 0 20px 0;
}
.box-form .bf-line input {
  margin: 0;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 14px;
  background: #ffffff;
  border: 1px solid #ccc;
  color: #555;
  border-radius: 3px;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.box-form .bf-line input[readonly] {
  background-color: #f5f5f5;
}
.box-form .bf-line label {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin: 0 0 5px 0;
}
.box-form .bf-line .btn-bff-submit {
  padding: 8px 20px;
}
.box-form .bf-line .btn-bff-submit:hover {
  background: #1A73D6;
  border-color: #1A73D6;
  color: #fff;
  cursor: pointer;
}
.box-form .bf-line .error, .box-form .bf-line.bfl-error {
  font-size: 12px;
  color: #1A73D6;
}
.box-form .bf-line .error .alert-success, .box-form .bf-line.bfl-error .alert-success {
  color: #00b894;
}
.box-form .bf-inline-items .item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.box-form .bf-inline-items .item input {
  width: inherit;
  display: inline-block;
}
.box-form .bf-inline-items select {
  display: inline-block;
  width: auto;
  min-width: 70px;
  vertical-align: middle;
  height: 28px;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  margin: 0;
}

.profile-comments {
  list-style: none;
}
.profile-comments .comment {
  min-height: 50px;
  margin-bottom: 10px;
}
.profile-comments .cmt-thumbnail img {
  display: block;
  float: left;
  width: 50px;
  border-radius: 50px;
  border: 1px solid #ddd;
}
.profile-comments .cmt-info-box {
  margin-left: 70px;
  border: 1px solid #eee;
  border-radius: 4px;
  position: relative;
}
.profile-comments .cmt-info-box .cib-header {
  background-color: #fbfbfb;
  padding: 4px 8px;
  border-bottom: 1px solid #eee;
}
.profile-comments .cmt-info-box .cib-header .author {
  font-weight: bold;
  display: block;
}
.profile-comments .cmt-info-box .cib-header .time {
  color: #999;
  font-size: 12px;
  position: relative;
}
.profile-comments .cmt-info-box .cib-header .btn-view-post {
  float: right;
  color: #999;
  position: relative;
  margin-right: 10px;
}
.profile-comments .cmt-info-box .cib-header .btn-view-post span {
  position: absolute;
  right: -10px;
  top: -5px;
  background: #1A73D6;
  display: inline-block;
  color: #fff;
  border-radius: 6px;
  font-size: 10px;
  padding: 1px 2px;
  line-height: 1;
  font-weight: bold;
}
.profile-comments .cmt-info-box .cib-body {
  padding: 10px 8px;
}
.profile-comments .cmt-info-box::before, .profile-comments .cmt-info-box::after {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  display: block;
  border-width: 10px 12px 10px 0;
  border-style: solid;
  border-color: transparent #fbfbfb;
  top: 8px;
  left: -11px;
}
.profile-comments .cmt-info-box::before {
  border-width: 11px 13px 11px 0;
  border-color: transparent rgba(0, 0, 0, 0.05);
  left: -12px;
}

.profile-reply-comments {
  list-style: none;
  margin-top: 10px;
  margin-left: 20px;
}
.profile-reply-comments .cmt-thumbnail img {
  width: 40px;
}
.profile-reply-comments .cmt-info-box {
  margin-left: 60px;
}

#change-avatar-file {
  display: none;
}

.fg-flex-row {
  display: flex;
  align-items: center;
}
.fg-flex-row .fg-input {
  margin-right: 8px;
}

.btn-fef-sendcode {
  white-space: nowrap;
  background-color: transparent;
  padding: 5px 10px;
}

.page-form-space {
  padding: 20px 0 30px 0;
}

.hidden {
  display: none !important;
}

.box-othermod .box-showmore {
  padding: 16px;
}

.page-404 {
  background: #f7f7f7;
}
.page-404 .wrapcontent {
  text-align: center;
  min-height: 100vh;
  min-height: calc(100vh - 75px);
}
.page-404 .wrapcontent .img-404 {
  display: block;
  margin: 0 auto;
}
.page-404 .wrapcontent .page-direct {
  margin: 30px auto;
}
.page-404 .wrapcontent .page-direct a {
  color: #1A73D6;
}
.page-404 .wrapcontent .page-direct a:hover {
  text-decoration: underline;
}
.page-404 .wrapcontent .title-404 {
  font-size: 27px;
  line-height: 38px;
  padding-top: 50px;
  font-weight: 400;
}

.bfaq-download2 {
  overflow: inherit;
  margin-bottom: 40px;
}

.aligncenter {
  display: block;
  margin: 0 auto 20px auto;
  height: auto !important;
}

.form-style .form-control {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 21px;
  color: #444;
  border: 1px solid #707070;
  padding: 8px 10px;
  outline: none;
  box-sizing: border-box;
}
.form-style .form-control:focus {
  border-color: #1A73D6;
}
.form-style .form-group {
  margin-bottom: 15px;
}
.form-style .btn {
  padding: 8px 10px;
  cursor: pointer;
}
.form-style .btn-submit {
  display: inline-block;
  background-color: #1A73D6;
  color: #fff;
  border: 0;
  outline: none;
  padding: 10px 50px;
  border-radius: 50px;
}
.form-style .btn-submit:hover {
  background-color: #1A73D6;
}
.form-style .required {
  color: #1A73D6;
}

.form-feedback-holder {
  max-width: 768px;
  margin: 30px auto;
}

.box-mod-feature .accordion .abody {
  max-height: 260px;
  overflow-y: auto;
}
.box-mod-feature .accordion .abody::-webkit-scrollbar {
  width: 12px;
}
.box-mod-feature .accordion .abody::-webkit-scrollbar-track {
  background: #eee;
}
.box-mod-feature .accordion .abody::-webkit-scrollbar-thumb {
  background: #aaa;
}

#ringtonePopup .popup {
  padding: 30px 16px;
  max-width: 450px;
}
#ringtonePopup .popup .button-holder {
  display: none;
}
#ringtonePopup .popup .button-holder .btn {
  display: inline-block;
  padding: 8px 10px;
  color: #fff;
  border-color: transparent;
  border-radius: 3px;
  margin-top: 10px;
  min-width: 180px;
  font-weight: bold;
  text-align: left;
}
#ringtonePopup .popup .button-holder .btn small {
  font-weight: normal;
}
#ringtonePopup .popup .button-holder .btn svg,
#ringtonePopup .popup .button-holder .btn span {
  display: inline-block;
  vertical-align: middle;
}
#ringtonePopup .popup .button-holder .btn svg,
#ringtonePopup .popup .button-holder .btn svg path {
  fill: #fff;
}
#ringtonePopup .popup .button-holder .btn svg {
  margin-right: 10px;
}
#ringtonePopup .popup .button-holder .btn.btn-android {
  background-color: #707070;
}
#ringtonePopup .popup .button-holder .btn.btn-ios {
  background-color: #ff4141;
}
#ringtonePopup .popup .button-holder .btn:hover {
  opacity: 0.8;
}
#ringtonePopup .popup.done .counter {
  display: none;
}
#ringtonePopup .popup.done .button-holder {
  display: block;
}

.entry-slide {
  overflow: hidden;
  overflow-x: auto;
  min-height: 220px;
}
.entry-slide .apk-slider-holder {
  width: max-content;
}
.entry-slide a {
  margin-right: 12px;
  display: inline-block;
}
.entry-slide .ss-item {
  border-radius: 14px;
  height: 200px;
  display: flex;
}

.entry-faq {
  max-width: 768px;
  margin: 0 auto 20px auto;
  border-radius: 3px;
  overflow: hidden;
}
.entry-faq .accordion {
  border-bottom: 1px solid #ddd;
  border-radius: 0;
}
.entry-faq .accordion:last-child {
  border-bottom: none;
}
.entry-faq .accordion.open {
  border: none;
}
.entry-faq .accordion .ahead {
  background-color: transparent;
  padding: 10px 0;
  position: relative;
  height: auto;
  line-height: 1.25;
}
.entry-faq .accordion .ahead .toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  margin-top: 0;
  font-weight: 400;
}
.entry-faq .accordion .abody {
  padding: 0;
}

.sbhTitle {
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-flex;
  width: 100%;
}
.sbhTitle .border {
  border: 2px solid #EB5418;
  border-radius: 4px;
}
.sbhTitle span,
.sbhTitle h1 {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  flex: 1;
  align-self: center;
  color: #374151;
}
.sbhTitle .ctBtnSeeMore {
  margin-top: -2px;
}
.sbhTitle .btnSeeMore {
  font-weight: 500;
  color: white;
  background-color: #2d98b5;
  padding: 5px;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  --tw-bg-opacity: 1;
  border-radius: 0.5rem;
  margin-top: 0;
}
.sbhTitle .btnSeeMore svg {
  display: var(--fa-display, inline-block);
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
  overflow: visible;
  box-sizing: content-box;
  margin-left: 0.25rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.sbhTitle .iconTitle {
  margin-right: 8px;
}

.nm-icon:hover svg,
.nm-icon:hover svg path {
  fill: #1A73D6;
}

.list-holder {
  position: relative;
}

.box-categories {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  padding: 5px;
  background-color: #fff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  display: none;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.box-categories.open {
  display: flex;
}
.box-categories a {
  display: block;
  width: 50%;
  padding: 5px 15px;
  color: #000;
  margin: 5px 0;
  box-sizing: border-box;
}
.box-categories a:visited {
  color: #000000;
}
.box-categories a:hover {
  color: #1A73D6;
}
.box-categories a:hover svg {
  fill: #1A73D6;
}
.box-categories a svg {
  margin-right: 5px;
}

.entry-related .sbhTitle {
  margin-bottom: 35px;
}

.bb-dark-2 {
  border-bottom: 2px solid #000;
}

.apk-info-table {
  display: flex;
}
.apk-info-table tbody {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: baseline;
  align-content: stretch;
  width: 100%;
}
.apk-info-table tbody tr {
  margin-bottom: 13px;
  text-align: left;
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.apk-info-table tbody tr th {
  font-weight: 600;
  display: flex;
  font-size: 16px;
  align-items: center;
  width: 50%;
}
.apk-info-table tbody tr th svg {
  width: 20px;
  height: 16px;
  margin-right: 0.5rem;
}
.apk-info-table tbody tr th svg path {
  fill: #35a1bc;
}
.apk-info-table tbody tr th p {
  flex: 1;
  overflow-wrap: break-word;
  white-space: normal;
}
.apk-info-table tbody tr td {
  font-weight: 400;
  color: #373f4c;
  font-size: 16px;
  width: 50%;
}
.apk-info-table tbody tr th,
.apk-info-table tbody tr td {
  padding: 3px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.apk-info-table a {
  color: #35A1BC;
}
.apk-info-table a:hover {
  color: #1A73D6;
}

.btn-backtopost {
  padding: 6px 16px;
  border: 1px solid #35A1BC;
}
.btn-backtopost svg {
  margin-right: 5px;
}
.btn-backtopost:visited {
  color: #35A1BC;
}
.btn-backtopost:hover {
  opacity: 0.75;
}

#downloadHere {
  color: #E40303;
  text-decoration: underline;
}
#downloadHere:hover {
  text-decoration: none;
}
#downloadHere a {
  word-break: inherit;
}

.entry-faq-download2 .accordion {
  border-radius: 8px;
  border: 1px solid rgba(53, 161, 188, 0.4901960784);
}
.entry-faq-download2 .accordion:last-child {
  border-bottom: 1px solid rgba(53, 161, 188, 0.4901960784);
}
.entry-faq-download2 .accordion .ahead {
  position: relative;
  background-color: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #4c5462;
}
.entry-faq-download2 .accordion .ahead::after {
  position: absolute;
  width: 0.4em;
  height: 0.4em;
  content: "";
  border-style: solid;
  border-width: 1px 0 0 1px;
  border-color: initial;
  right: 25px;
  top: 50%;
  transition: all 0.3s ease-out;
  transform-origin: top;
  transform: rotate(45deg) translateY(-50%);
}
.entry-faq-download2 .accordion .abody {
  font-size: 0.9rem;
}
.entry-faq-download2 .accordion.open .ahead::after {
  transform: rotate(225deg) translateY(-50%);
  transition: all 0.3s ease-out;
}

.icon-svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.icon-svg.icon-apk {
  width: 24px;
  height: 21px;
  background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 24 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.66162 15.6341V3.1122C1.66162 1.83152 2.69981 1.37305 3.98049 1.37305H11.5168C12.6767 1.37304 13.6159 2.31253 14.3849 3.08167L14.4154 3.1122H18.8212C20.1199 3.1122 20.769 3.1122 21.2651 3.36494C21.7014 3.58725 22.0566 3.94202 22.2789 4.37834C22.5317 4.87438 22.5317 5.52372 22.5317 6.8224L22.5317 15.6341C22.5317 16.9327 22.5317 17.5821 22.2789 18.0781C22.0566 18.5144 21.7014 18.8692 21.2651 19.0915C20.769 19.3442 20.1201 19.3442 18.8215 19.3442H5.37203C4.07335 19.3442 3.42352 19.3442 2.92749 19.0915C2.49116 18.8692 2.13668 18.5144 1.91436 18.0781C1.66162 17.5821 1.66162 16.9327 1.66162 15.6341Z' fill='%23D9D9D9'/%3E%3Cpath d='M1.66162 3.1122V15.6341C1.66162 16.9327 1.66162 17.5821 1.91436 18.0781C2.13668 18.5144 2.49116 18.8692 2.92749 19.0915C3.42352 19.3442 4.07335 19.3442 5.37203 19.3442H18.8215C20.1201 19.3442 20.769 19.3442 21.2651 19.0915C21.7014 18.8692 22.0566 18.5144 22.2789 18.0781C22.5317 17.5821 22.5317 16.9327 22.5317 15.6341L22.5317 6.8224C22.5317 5.52372 22.5317 4.87438 22.2789 4.37834C22.0566 3.94202 21.7014 3.58725 21.2651 3.36494C20.769 3.1122 20.1199 3.1122 18.8212 3.1122H14.4154M1.66162 3.1122H14.4154M1.66162 3.1122C1.66162 1.83152 2.69981 1.37305 3.98049 1.37305H11.5168C12.6767 1.37304 13.6159 2.31253 14.3849 3.08167L14.4154 3.1122' stroke='%23009728' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='3.18396' y='4.79669' width='17.7923' height='12.9288' rx='1' fill='%23009728'/%3E%3Cpath d='M6.10488 13.7907H4.95862L6.70518 8.73138H8.08365L9.82774 13.7907H8.68148L7.41418 9.88752H7.37465L6.10488 13.7907ZM6.03323 11.8021H8.74077V12.6371H6.03323V11.8021Z' fill='white'/%3E%3Cpath d='M10.4367 13.7907V8.73138H12.4328C12.8165 8.73138 13.1434 8.80467 13.4135 8.95125C13.6836 9.09618 13.8895 9.29793 14.0311 9.55649C14.1744 9.81341 14.246 10.1099 14.246 10.4458C14.246 10.7818 14.1736 11.0782 14.0286 11.3352C13.8837 11.5921 13.6737 11.7922 13.3987 11.9355C13.1253 12.0788 12.7943 12.1504 12.4056 12.1504H11.1333V11.2932H12.2327C12.4385 11.2932 12.6082 11.2578 12.7416 11.1869C12.8766 11.1145 12.9771 11.0148 13.0429 10.888C13.1105 10.7596 13.1442 10.6122 13.1442 10.4458C13.1442 10.2778 13.1105 10.1313 13.0429 10.0061C12.9771 9.87929 12.8766 9.7813 12.7416 9.71213C12.6065 9.64131 12.4352 9.6059 12.2277 9.6059H11.5064V13.7907H10.4367Z' fill='white'/%3E%3Cpath d='M14.9408 13.7907V8.73138H16.0105V10.9621H16.0772L17.8979 8.73138H19.18L17.3025 10.9967L19.2022 13.7907H17.9226L16.5367 11.7107L16.0105 12.353V13.7907H14.9408Z' fill='white'/%3E%3C/svg%3E%0A");
}
.icon-svg.icon-obb {
  width: 24px;
  height: 23px;
  background-image: url("data:image/svg+xml,%3Csvg  viewBox='0 0 24 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5748 21.704H3.40077C2.44026 21.704 1.66162 20.9253 1.66162 19.9648V2.57332C1.66162 1.61281 2.44026 0.834167 3.40077 0.834167H20.7923C21.7528 0.834167 22.5314 1.61281 22.5314 2.57332V14.7474M15.5748 21.704L22.5314 14.7474M15.5748 21.704V16.4865C15.5748 15.526 16.3535 14.7474 17.314 14.7474H22.5314' stroke='%23E99400' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.39075 19.9331V2.88861H20.7581V13.111C19.844 13.2576 17.6059 13.5383 15.9664 13.4886C14.327 13.4389 13.9297 15.6069 13.936 16.6971V19.9331H3.39075Z' fill='%23E99400'/%3E%3Cpath d='M9.68034 7.85146C9.68034 8.43663 9.56941 8.93447 9.34757 9.34497C9.12747 9.75547 8.82702 10.069 8.44622 10.2856C8.06716 10.5005 7.64094 10.6079 7.16756 10.6079C6.69068 10.6079 6.26272 10.4996 5.88366 10.283C5.5046 10.0664 5.20503 9.75285 4.98493 9.34235C4.76483 8.93185 4.65479 8.43489 4.65479 7.85146C4.65479 7.26628 4.76483 6.76844 4.98493 6.35794C5.20503 5.94744 5.5046 5.63476 5.88366 5.41991C6.26272 5.2033 6.69068 5.095 7.16756 5.095C7.64094 5.095 8.06716 5.2033 8.44622 5.41991C8.82702 5.63476 9.12747 5.94744 9.34757 6.35794C9.56941 6.76844 9.68034 7.26628 9.68034 7.85146ZM8.53007 7.85146C8.53007 7.4724 8.4733 7.15273 8.35975 6.89246C8.24796 6.63219 8.08987 6.4348 7.8855 6.30029C7.68112 6.16579 7.44181 6.09854 7.16756 6.09854C6.89331 6.09854 6.654 6.16579 6.44962 6.30029C6.24525 6.4348 6.08629 6.63219 5.97275 6.89246C5.86095 7.15273 5.80505 7.4724 5.80505 7.85146C5.80505 8.23051 5.86095 8.55018 5.97275 8.81045C6.08629 9.07072 6.24525 9.26811 6.44962 9.40262C6.654 9.53712 6.89331 9.60437 7.16756 9.60437C7.44181 9.60437 7.68112 9.53712 7.8855 9.40262C8.08987 9.26811 8.24796 9.07072 8.35975 8.81045C8.4733 8.55018 8.53007 8.23051 8.53007 7.85146Z' fill='white'/%3E%3Cpath d='M10.5208 10.5345V5.16837H12.6693C13.0641 5.16837 13.3934 5.22688 13.6571 5.34392C13.9209 5.46096 14.1192 5.62341 14.2519 5.83128C14.3847 6.0374 14.4511 6.27497 14.4511 6.54397C14.4511 6.75359 14.4091 6.93788 14.3253 7.09684C14.2415 7.25405 14.1262 7.38331 13.9794 7.48463C13.8344 7.58419 13.6685 7.65494 13.4816 7.69686V7.74927C13.686 7.758 13.8772 7.81565 14.0554 7.9222C14.2353 8.02876 14.3812 8.17811 14.493 8.37026C14.6048 8.56066 14.6607 8.78774 14.6607 9.05151C14.6607 9.33624 14.5899 9.5904 14.4485 9.81399C14.3087 10.0358 14.1017 10.2114 13.8275 10.3406C13.5532 10.4699 13.2152 10.5345 12.8134 10.5345H10.5208ZM11.6553 9.60699H12.5802C12.8964 9.60699 13.127 9.54673 13.272 9.4262C13.417 9.30392 13.4895 9.14147 13.4895 8.93884C13.4895 8.79036 13.4536 8.65935 13.382 8.54581C13.3104 8.43227 13.2082 8.34318 13.0755 8.27855C12.9445 8.21392 12.7881 8.1816 12.6064 8.1816H11.6553V9.60699ZM11.6553 7.41388H12.4964C12.6519 7.41388 12.7899 7.38681 12.9104 7.33265C13.0327 7.27676 13.1287 7.19815 13.1986 7.09684C13.2702 6.99552 13.306 6.87412 13.306 6.73263C13.306 6.53873 13.237 6.38239 13.099 6.26361C12.9628 6.14483 12.7689 6.08544 12.5174 6.08544H11.6553V7.41388Z' fill='white'/%3E%3Cpath d='M15.3989 10.5345V5.16837H17.5475C17.9423 5.16837 18.2715 5.22688 18.5353 5.34392C18.7991 5.46096 18.9973 5.62341 19.1301 5.83128C19.2629 6.0374 19.3292 6.27497 19.3292 6.54397C19.3292 6.75359 19.2873 6.93788 19.2035 7.09684C19.1196 7.25405 19.0043 7.38331 18.8576 7.48463C18.7126 7.58419 18.5467 7.65494 18.3598 7.69686V7.74927C18.5641 7.758 18.7554 7.81565 18.9336 7.9222C19.1135 8.02876 19.2594 8.17811 19.3712 8.37026C19.483 8.56066 19.5389 8.78774 19.5389 9.05151C19.5389 9.33624 19.4681 9.5904 19.3266 9.81399C19.1869 10.0358 18.9799 10.2114 18.7056 10.3406C18.4314 10.4699 18.0934 10.5345 17.6916 10.5345H15.3989ZM16.5335 9.60699H17.4584C17.7746 9.60699 18.0052 9.54673 18.1501 9.4262C18.2951 9.30392 18.3676 9.14147 18.3676 8.93884C18.3676 8.79036 18.3318 8.65935 18.2602 8.54581C18.1886 8.43227 18.0864 8.34318 17.9536 8.27855C17.8226 8.21392 17.6663 8.1816 17.4846 8.1816H16.5335V9.60699ZM16.5335 7.41388H17.3746C17.53 7.41388 17.668 7.38681 17.7886 7.33265C17.9108 7.27676 18.0069 7.19815 18.0768 7.09684C18.1484 6.99552 18.1842 6.87412 18.1842 6.73263C18.1842 6.53873 18.1152 6.38239 17.9772 6.26361C17.841 6.14483 17.6471 6.08544 17.3955 6.08544H16.5335V7.41388Z' fill='white'/%3E%3C/svg%3E%0A");
}

#pageFeedback #feedback {
  background-color: #fff;
  border-radius: 5px;
  width: 405px;
  max-width: 100%;
  margin: 0 auto;
  padding: 25px 30px;
  box-sizing: border-box;
  position: relative;
}
#pageFeedback #feedback .close {
  position: absolute;
  top: 10px;
  right: 10px;
}
#pageFeedback #feedback .close:hover svg {
  fill: red;
}
#pageFeedback #feedback .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}
#pageFeedback #feedback .line {
  margin-bottom: 8px;
}
#pageFeedback #feedback .line-input label {
  display: block;
  font-weight: bold;
}
#pageFeedback #feedback .line-input .input {
  width: 100%;
  border-color: rgba(53, 161, 188, 0.4901960784);
  border-radius: 3px;
  padding: 0 10px;
  box-sizing: border-box;
}
#pageFeedback #feedback .line-input .input:focus {
  outline: none;
  appearance: none;
}
#pageFeedback #feedback .line-input input.input {
  height: 30px;
}
#pageFeedback #feedback .line-input textarea.input {
  padding: 5px 10px;
  height: 85px;
}
#pageFeedback #feedback .line-type .group {
  display: flex;
  align-items: center;
  padding: 4px 0;
}
#pageFeedback #feedback .line-type .group span {
  margin-left: 5px;
}
#pageFeedback #feedback .line-type label {
  margin-bottom: 8px;
}
#pageFeedback #feedback .line-type textarea {
  display: none;
}
#pageFeedback #feedback .line-type textarea.show {
  display: block;
}
#pageFeedback #feedback .line-type.other textarea {
  display: block;
}
#pageFeedback #feedback .line-msg p {
  display: flex;
  margin-bottom: 8px;
}
#pageFeedback #feedback .line-msg p span {
  margin-left: 5px;
}
#pageFeedback #feedback .line-file {
  margin-bottom: 20px;
}
#pageFeedback #feedback .line-file input[type=file] {
  display: none;
}
#pageFeedback #feedback .line-file button {
  border-radius: 50px;
  border-color: rgba(53, 161, 188, 0.4901960784);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: transparent;
}
#pageFeedback #feedback .line-file button:hover {
  border-color: #1A73D6;
  color: #1A73D6;
}
#pageFeedback #feedback .line-file .group {
  display: flex;
  align-items: center;
}
#pageFeedback #feedback .line-file .group > * {
  width: 50%;
}
#pageFeedback #feedback .line-file .group span {
  padding-left: 5px;
}
#pageFeedback #feedback .submit {
  width: 100%;
  text-align: center;
  background: #000;
  color: #fff;
  border-color: transparent;
}
#pageFeedback #feedback .submit:hover {
  background-color: #1A73D6;
}

.entry-warning {
  margin-bottom: 30px;
}
.entry-warning .relatorio {
  font-size: 14px;
}
.entry-warning .relatorio svg,
.entry-warning .relatorio span {
  display: inline-block;
  vertical-align: middle;
}
.entry-warning .relatorio span {
  text-decoration: underline;
}
.entry-warning .relatorio:hover {
  cursor: pointer;
  color: #1A73D6;
}

.postsInTag {
  margin-left: 40px;
}
.postsInTag li {
  margin-bottom: 15px;
}
.postsInTag li a:visited {
  color: #1A73D6;
}
.postsInTag li a:hover {
  color: red;
  text-decoration: underline;
}

.list-tags .tags-title,
.list-tags .tag {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 10px;
  border: 1px solid #1a73d6;
  margin-bottom: 5px;
}
.list-tags .tags-title {
  background-color: #1A73D6;
  color: #fff;
  font-weight: bold;
}
.list-tags .tag {
  color: #1A73D6;
}
.list-tags .tag:hover {
  background-color: #1A73D6;
  color: #fff;
}

.adsBox {
  display: block !important;
}

.ads-wrap {
  width: 100% !important;
}

.ph-right .ctSearch {
  display: none;
}

.bgAll {
  background: linear-gradient(180deg, #35A1BC 0%, #F2F2F2 9.56%, #F8F8F8 100%);
  position: fixed;
  width: 100%;
  height: 2000px;
  top: 53px;
  z-index: -1;
}

.thumb-over {
  width: calc(100% + 50px);
  margin-left: -25px;
}
.thumb-over img {
  width: 100%;
  height: auto;
  display: flex;
}

.page-single2 {
  background-color: white;
  position: relative;
  padding-bottom: 27px;
}
.page-single2 .title {
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  color: #374151;
  text-align: left;
}
.page-single2 article .page-description .entry-apk-rating {
  padding: 22px 27px 0;
  display: flex;
}
.page-single2 article .page-description .entry-apk-rating .thumb img {
  width: 78px;
  height: 78px;
  border-radius: 11px;
}
.page-single2 article .page-description .entry-apk-rating .info {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-evenly;
  margin-left: 6px;
}
.page-single2 article .page-description .entry-apk-rating .info .page-title {
  font-size: 10px;
  font-weight: 600;
  color: #EB5418;
}
.page-single2 article .page-description .entry-apk-rating .info p {
  font-size: 11px;
  font-weight: 500;
  color: #7D7F88;
}
.page-single2 article .page-description .ctInfoRow {
  font-size: 11px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  padding: 13px 27px 7px;
}
.page-single2 article .page-description .ctInfoRow svg {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.page-single2 article .page-description .ctInfoRow .line {
  width: 0.5px;
  background-color: rgba(118, 118, 118, 0.46);
}
.page-single2 article .page-description .ctInfoRow .ctRating {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.page-single2 article .page-description .ctInfoRow .ctSize {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.page-single2 article .page-description .ctInfoRow .ctSize .subSize {
  font-size: 7px;
  font-weight: 400;
}
.page-single2 article .page-description .ctInfoRow p {
  align-self: center;
}
.page-single2 article .page-description .ctInfoRow .cate {
  flex: 1;
  text-align: center;
}

.entry-app-info .ctTitle {
  display: flex;
  margin: 13px 27px;
}
.entry-app-info .ctTitle .line {
  width: 3px;
  background-color: #35A1BC;
  border-radius: 10px;
}
.entry-app-info .ctTitle .sbhTitle span {
  font-size: 13px;
  font-weight: 600;
}
.entry-app-info .ctModFeature {
  background: #35A1BC;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 22.7523px;
  font-size: 10px;
  font-weight: 400;
  color: white;
  margin: 10px 27px;
  padding: 10px 8px;
}

.ph-right .language {
  display: none;
}

.owl-carousel .item img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.owl-carousel .item .bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2901960784);
  position: absolute;
  top: 0;
  border-radius: 20px;
}
.owl-carousel .item .btnDownload {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 0.5rem 0.8rem;
  margin: 10px;
  border-radius: 15px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.owl-carousel .item .btnDownload p {
  font-weight: 600;
  color: #1f2937;
  font-size: 13px;
}
.owl-carousel .item .btnDownload span {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity));
  --tw-gradient-to: #22d3ee;
  --tw-gradient-from: #4ade80;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(74 222 128 / 0));
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  border-radius: 9999px;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
}
.owl-carousel .item .btnDownload span svg {
  height: 0.8rem;
  width: 0.8rem;
}

#searchSection {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease-in-out;
  transform: translateY(-100%);
}
#searchSection.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btnCloseSearch {
  margin-left: 12px;
}
.btnCloseSearch path {
  fill: #222;
}

.ctSearch {
  margin-left: auto;
  margin-right: auto;
  max-width: 1088px;
  position: relative;
}
.ctSearch .formSearchBox {
  border-bottom: 1px solid #ebebeb;
  padding: 8px 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
.ctSearch form {
  width: 100%;
}
.ctSearch form .ctSearchRow {
  align-items: center;
  display: flex;
  padding: 6px 12px;
  overflow: hidden;
  border-radius: 50px;
  width: 100%;
  border: 1px solid #ebebeb;
}
.ctSearch form .ctSearchRow input {
  color: #000;
  width: 100%;
}
.ctSearch form .ctSearchRow input::placeholder {
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
}
.ctSearch form button {
  background: transparent;
  border: none;
  padding: 0px;
  display: flex;
  align-items: center;
}
.ctSearch form button svg {
  width: 16px;
  height: 16px;
}
.ctSearch form button svg path {
  fill: #000;
}
.ctSearch form button:hover {
  opacity: 0.8;
}
.ctSearch form input {
  flex: 1;
  border: none;
  font-size: 15px;
  font-weight: 400;
}
.ctSearch form .suggestions-holder {
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 20px;
  padding-left: 12px;
  padding-right: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom: 1px solid rgba(27, 188, 155, 0.15);
  width: calc(100% - 40px);
}
.ctSearch form .suggestions-holder p {
  padding: 2px 0;
}
.ctSearch form .suggestions-holder .s-item {
  cursor: pointer;
  border-radius: 4px;
}
.ctSearch form .suggestions-holder .s-item:hover, .ctSearch form .suggestions-holder .s-item.active {
  background-color: #1bbc9b;
  color: #fff;
}

.btnLogin {
  background-color: black;
  color: white;
  border: none;
}

.rowIconDown2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rowIconDown2 figure {
  aspect-ratio: 96/96;
  min-width: 96px;
  border-radius: 11px;
  overflow: hidden;
}
.rowIconDown2 .page-title {
  font-size: 18px;
  line-height: 24px;
}

.paddingScreen {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.marginScreen {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.sbhomegames {
  margin-bottom: 30px;
}

.sbhomeapps {
  margin-bottom: 30px;
}

.sbhomeblogs {
  margin-bottom: 30px;
}

.sbhomeseo {
  margin-bottom: 30px;
}

.btnTelegram2 {
  background-color: #EC8128;
  border-radius: 25px;
}
.btnTelegram2 svg {
  margin-right: 15px;
  margin-left: 0;
}

.btnGooglePlayStore {
  display: flex;
  align-items: center;
  width: fit-content;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 16px;
  background-color: #68cb5b;
  margin-bottom: 44px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.btnGooglePlayStore:hover {
  opacity: 0.8;
}
.btnGooglePlayStore svg {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}
.btnGooglePlayStore svg path {
  stroke: #fff;
}
.btnGooglePlayStore .text {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.btnM600 {
  width: 100%;
  max-width: 600px;
}

.iconTitle {
  display: inline-flex;
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  --tw-gradient-from: #4ade80;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(74 222 128 / 0));
  --tw-gradient-to: #22c55e;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity));
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px 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);
  --tw-shadow-color: #86efac;
  --tw-shadow: var(--tw-shadow-colored);
  margin-right: 0;
  --tw-gradient-from: #85B6FF;
  --tw-gradient-to: #0085FF;
  --tw-shadow-color: #85B6FF;
}
.iconTitle svg {
  overflow: visible;
  box-sizing: content-box;
  display: var(--fa-display, inline-block);
  width: 22px;
  height: 15px;
  overflow: visible;
}
.iconTitle.games {
  --tw-gradient-from: #FF8585;
  --tw-gradient-to: #FF0000;
  --tw-shadow-color: #FF8585;
}
.iconTitle.apps {
  --tw-gradient-from: #DF85FF;
  --tw-gradient-to: #AD00FF;
  --tw-shadow-color: #DF85FF;
}
.iconTitle.comment {
  --tw-gradient-from: #DF85FF;
  --tw-gradient-to: #AD00FF;
  --tw-shadow-color: #DF85FF;
}

.breadcumb {
  color: #646f78;
  padding: 0.5rem 0;
  width: 100%;
}
.breadcumb a {
  color: rgb(243 244 246/var(--tw-text-opacity));
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1rem;
}

.page-single2 .page-description .thumb img {
  width: 180px;
  height: 180px;
  border-radius: 0.75rem;
  margin: 25px auto;
}

.btnGooglePlayStore2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  font-size: 30px;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #333;
  padding: 5px 10px;
  transition: all 0.5s ease;
  text-decoration: none !important;
  color: white;
}
.btnGooglePlayStore2 svg {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}
.btnGooglePlayStore2 .ctText {
  display: flex;
  flex-direction: column;
}
.btnGooglePlayStore2 .ctText .textGetItOn {
  font-size: 8px;
  font-weight: 300;
  color: white;
}
.btnGooglePlayStore2 .ctText .textGooglePlay {
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.secbox {
  background-color: white;
  padding: 20px;
  margin-left: -20px;
  margin-right: -20px;
}

.box-content {
  overflow-y: auto;
  font-weight: 400;
  font-size: 14px;
  color: #4c4c4c;
  line-height: 25px;
  box-sizing: border-box;
  outline: none;
}
.box-content table {
  table-layout: auto;
  border-style: hidden;
  border-spacing: 0;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  display: table;
  box-sizing: border-box;
  text-indent: initial;
  border-spacing: 2px;
  border-color: gray;
}
.box-content table thead {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
}
.box-content table tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}
.box-content table tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
  border-bottom: 1px solid #e6e9ef;
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
.box-content table th {
  padding: 1em 1.4575em;
  vertical-align: middle;
  background: #f6f6f6;
  font-weight: 600;
  text-align: left;
  border: 1px solid #F2F2F2;
  border-bottom: 1px solid #e6e9ef;
  min-width: 130px;
}
.box-content table td {
  padding: 1em 1.41575em;
  text-align: left;
  vertical-align: top;
  border: 1px solid #F2F2F2;
}
.box-content table a {
  color: #35a1bc;
}

.entry-parent-link {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.linkParent {
  display: flex;
  height: 32px;
  align-items: center;
  background-color: #81c2d2;
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.linkParent:hover {
  opacity: 0.85;
}
.linkParent svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.linkParent svg path {
  fill: #fff;
}
.linkParent span {
  color: #fff;
}

.subcribeWrp {
  margin-bottom: 20px;
}

.btnSubscribe {
  box-sizing: border-box;
  display: inline-block;
  padding: 8px 12px;
  background-color: #1A73D6;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  max-width: 435px;
  width: 100%;
  cursor: pointer;
  user-select: none;
}
.btnSubscribe:hover {
  opacity: 0.8;
}
.btnSubscribe .text {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  line-height: 20px;
}
.btnSubscribe.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}
.btnSubscribe svg {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.btnSubscribe svg path {
  fill: #fff;
}
.btnSubscribe:hover {
  background-color: #1A73D6;
}

.unsubWebpushBtn {
  background-color: #a08a8a;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  height: 32px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  max-width: 435px;
  width: 100%;
  padding: 8px 16px;
  margin-bottom: 20px;
  width: fit-content;
  cursor: pointer;
  user-select: none;
}
.unsubWebpushBtn:hover {
  opacity: 0.8;
}
.unsubWebpushBtn .text {
  font-size: 16px;
  font-weight: bold;
}
.unsubWebpushBtn svg {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.unsubWebpushBtn svg path {
  fill: #fff;
}
.unsubWebpushBtn:hover {
  background-color: #ff4141;
}

.deswrp {
  text-align: center;
  margin-top: 20px;
}

.list_apk_new {
  margin: 24px 0;
}
.list_apk_new .head {
  margin-bottom: 24px;
}
.list_apk_new .head.more {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_apk_new .head .see_more {
  color: #1A73D6;
  font-weight: bold;
  font-size: 13px;
}
.list_apk_new .head .see_more:hover {
  opacity: 0.8;
}
.list_apk_new .head h2 {
  color: #222222;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3636363636;
}
.list_apk_new .head.archive {
  display: flex;
  align-items: center;
  gap: 12px;
}
.list_apk_new .head.archive .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_apk_new .head.archive .icon svg {
  width: 22px;
  height: 15px;
}
.list_apk_new .head.archive .title {
  font-size: 40px;
}

.body.list_apk ul {
  margin-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}
.body.list_apk li {
  flex: 0 1 100%;
  overflow: hidden;
}
.body.list_apk .app:hover {
  opacity: 0.8;
}
.body.list_apk h3 {
  font-weight: 500;
}
.body.list_apk .app-sub-text {
  font-size: 13px;
  color: #646f78;
}
.body.list_apk .apk_thumb figure {
  border-radius: 12px;
  overflow: hidden;
}
.body.list_apk .apk_content {
  display: flex;
  gap: 16px;
}
.body.list_apk .apk_icon {
  display: none;
}
.body.list_apk .apk_icon figure {
  width: 68px;
  height: 68px;
  aspect-ratio: 68/68;
  overflow: hidden;
  border-radius: 8px;
}
.body.list_apk .content_icon {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.body.list_apk .content_icon .category {
  color: #707070;
  width: fit-content;
  padding: 2px 4px;
  border-radius: 6px;
  background-color: #ebebeb;
  font-size: 12px;
}
.body.list_apk .content_icon .meta {
  color: #707070;
  font-size: 12px;
}
.body.list_apk .content_icon .text_meta {
  display: flex;
  align-items: center;
  gap: 4px;
}
.body.list_apk .content_icon .text_meta::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: #fa7a48;
  display: block;
}
.body.list_apk .title {
  color: #222222;
}

.line-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.thumbnail2 {
  display: flex;
  gap: 24px;
}
.thumbnail2 .thumb {
  aspect-ratio: 96/96;
  min-width: 96px;
  border-radius: 8px;
  overflow: hidden;
}
.thumbnail2 .info {
  width: calc(100% - 120px);
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.thumbnail2 .info .feature {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.thumbnail2 .info .feature .item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #707070;
}
.thumbnail2 .info .feature .item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: #fa7a48;
  display: block;
}
.thumbnail2 .info .category {
  background-color: #EBEBEB;
  padding: 2px 4px;
  border-radius: 6px;
  color: #707070;
  width: fit-content;
}

.line_hr {
  margin: 32px -20px;
  border-color: #ebebeb;
}

.info_apk .title {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 600;
}
.info_apk table {
  width: 100%;
  font-size: 16px;
  color: #707070;
  line-height: 1.5;
}
.info_apk table tbody {
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 16px;
}
.info_apk table tbody .item_info {
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  text-overflow: ellipsis;
}
.info_apk table tbody td {
  font-size: 14px;
  color: #222222;
}

.mod_version .title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}
.mod_version .tablayout .tabHead {
  display: flex;
  gap: 16px;
}
.mod_version .tablayout .tabHead .buttonTab {
  border: 1px solid #ebebeb;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 9999px;
}
.mod_version .tablayout .tabHead .buttonTab.active {
  border: 1px solid #35a1bc;
  color: #35a1bc;
  background-color: rgba(53, 161, 188, 0.04);
}
.mod_version .tablayout .tabHead .buttonTab:hover {
  cursor: pointer;
}
.mod_version .tablayout .tabcontent {
  margin-top: 24px;
}
.mod_version .tablayout .tabcontent .tab_download {
  display: flex;
  gap: 12px;
}
.mod_version .tablayout .tabcontent .tab_download .thumb {
  aspect-ratio: 56/56;
  min-width: 56px;
  border-radius: 8px;
  overflow: hidden;
}
.mod_version .tablayout .tabcontent .tab_download .info {
  width: calc(100% - 68px);
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.mod_version .tablayout .tabcontent .tab_download .title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.mod_version .tablayout .tabcontent .tab_download .content_info span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #707070;
}
.mod_version .tablayout .tabcontent .tab_download .content_info span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: #fa7a48;
  display: block;
}
.mod_version .tablayout .tabcontent .tab_download .content_info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mod_version .tablayout .tabcontent .tab_download .type {
  display: flex;
  gap: 4px;
}
.mod_version .tablayout .tabcontent .tab_download .type span {
  padding: 6px 12px;
  font-size: 10px;
  border-radius: 99999px;
}
.mod_version .tablayout .tabcontent .tab_download .type .apk {
  border: 1px solid #3f8826;
  color: #3f8826;
}
.mod_version .tablayout .tabcontent .tab_download .type .mod {
  color: #fa7a48;
  border: 1px solid #fa7a48;
}

.btn_download_apk {
  padding: 6px 12px;
  background-color: #fa7a48;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 16px;
  border-radius: 9999px;
}
.btn_download_apk span {
  font-weight: 600;
  line-height: 24px;
  font-size: 12px;
  color: white;
}
.btn_download_apk:hover {
  opacity: 0.7;
}

@media screen and (min-width: 500px) {
  .owl-carousel .item .btnDownload {
    padding: 0.8rem 1rem;
  }
  .owl-carousel .item .btnDownload p {
    font-size: 15px;
  }
  .owl-carousel .item .btnDownload span {
    font-size: 15px;
    width: 2rem;
    height: 2rem;
  }
  .owl-carousel .item .btnDownload span svg {
    height: 1rem;
    width: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .info_apk table {
    width: 100%;
    gap: 24px;
  }
  .info_apk table tbody .item_info {
    width: calc(33.333333% - 16px);
  }
  .list_apk_new .body.list_apk .apk_icon {
    display: block;
  }
  .list_apk_new .body.list_apk .content_icon {
    width: calc(100% - 84px);
  }
  .secbox {
    border-radius: 16px;
  }
  .apks3 li {
    width: 33.3333%;
  }
  .mod-accordion .ahead .toggle {
    top: 48%;
  }
  .breadcumb {
    margin-left: 0;
  }
  .iconTitle {
    width: 48px;
    height: 48px;
  }
  .iconTitle svg {
    width: 24px;
    height: 24px;
  }
  .sbhTitle .ctBtnSeeMore {
    margin-top: 8px;
  }
  .owl-carousel .item .btnDownload {
    padding: 0.8rem 1rem;
  }
  .owl-carousel .item .btnDownload p {
    font-size: 17px;
  }
  .owl-carousel .item .btnDownload span {
    font-size: 15px;
    width: 2.4rem;
    height: 2.4rem;
  }
  .owl-carousel .item .btnDownload span svg {
    height: 1.2rem;
    width: 1.2rem;
  }
  .bsc-list2 a {
    margin-bottom: 16px;
  }
  .bsc-list2 a svg {
    width: 24px;
    height: 24px;
  }
  .rowIconDown2 {
    justify-content: flex-start;
  }
  .entry-app-info .ctModFeature {
    font-size: 16px;
    margin: 10px 65px;
    padding: 18px 16px;
  }
  .blogs {
    display: flex;
    justify-content: flex-start;
    margin-left: -10px;
    margin-right: -10px;
    flex-wrap: wrap;
  }
  .blogs .thumb {
    height: auto;
  }
  .blogs li {
    display: flex;
    width: 50%;
  }
  .blogs li a {
    margin: 10px;
  }
  .paddingScreen {
    padding-left: 65px !important;
    padding-right: 65px !important;
  }
  .marginScreen {
    margin-left: 65px !important;
    margin-right: 65px !important;
  }
  .ctSearch {
    margin-top: 100px;
  }
  .ctSearch form input {
    padding: 10px;
    font-size: 14px;
  }
  .wrap-box-mod .icDownload {
    width: 65px;
    height: 65px;
  }
  .icon-svg.icon-apk {
    width: 42px;
    height: 37px;
  }
  .icon-svg.icon-obb {
    width: 42px;
    height: 40px;
  }
  .accordion .ahead span,
  .accordion .ahead svg {
    font-size: 18px;
  }
  .accordion .abody {
    font-size: 16px;
  }
  .apk-info-table {
    padding: 25px 0 25px 25px;
  }
  .apk-info-table tbody tr {
    width: 100%;
  }
  .btn-download svg {
    width: 1.2em;
    height: 1.2em;
  }
  .btn-download span {
    margin-left: 5px;
  }
  .thumb-over {
    width: calc(100% + 130px);
    margin-left: -65px;
  }
  .page-single2 {
    padding-bottom: 36px;
  }
  .page-single2 article .page-description {
    display: flex;
  }
  .page-single2 article .page-description .thumb img {
    width: 150px;
    height: 150px;
  }
  .page-single2 article .page-description .entry-app-info {
    display: flex;
    flex: 1;
  }
  .page-single2 article .page-description .entry-app-info .table-res {
    width: 100%;
  }
  .page-single2 article .page-description .entry-app-info .table-res td {
    width: 50%;
    text-align: start;
  }
  .page-single2 article .page-description .entry-app-info .ctTitle {
    margin: 15px 65px 14px;
  }
  .page-single2 article .page-description .entry-app-info .ctTitle .sbhTitle span {
    font-size: 18px;
  }
  .page-single2 article .page-description .entry-app-info .ctTitle .line {
    width: 4px;
  }
  .page-single2 article .page-description .entry-apk-rating {
    padding: 40px 65px 0;
    margin-bottom: 10px;
  }
  .page-single2 article .page-description .entry-apk-rating .thumb img {
    width: 120px;
    height: 120px;
  }
  .page-single2 article .page-description .entry-apk-rating .info {
    margin-left: 14px;
  }
  .page-single2 article .page-description .entry-apk-rating .info .page-title {
    font-size: 24px;
  }
  .page-single2 article .page-description .entry-apk-rating .info p {
    font-size: 20px;
  }
  .page-single2 article .page-description .ctInfoRow {
    font-size: 18px;
    padding: 10px 65px 12px;
  }
  .page-single2 article .page-description .ctInfoRow svg {
    width: 26px;
    height: 26px;
  }
  .page-single2 article .page-description .ctInfoRow .ctSize .subSize {
    font-size: 14px;
  }
  .bgAll {
    height: 2000px;
    top: 84px;
  }
  .breadcumb ul li a,
  .breadcumb ul li {
    font-size: 16px;
  }
  .breadcumb ul li a::after,
  .breadcumb ul li::after {
    font-size: 16px;
  }
  .breadcumb ul li a span,
  .breadcumb ul li span {
    font-size: 16px;
  }
  .bsc-list2 a {
    font-size: 12px;
    width: 25%;
  }
  .bsc-list2 svg {
    width: 32px;
    height: 32px;
    margin-right: 16px;
  }
  .pagination ul li a {
    font-size: 10px;
    width: 30px;
    height: 30px;
  }
  .pagination ul li a svg {
    width: 30px;
  }
  .sbhTitle span {
    font-size: 25px;
  }
  .sbhTitle .btnSeeMore {
    font-size: 13px;
    font-weight: 500;
  }
  .sbhTitle .btnSeeMore svg {
    margin-top: 2px;
  }
  .apks3 .apk-icon .thumb {
    width: 120px;
    height: 120px;
  }
  .apks3 .apk-icon .thumb img {
    width: 120px;
    height: 120px;
  }
  .apks3 .apk-icon .info {
    max-width: calc(100% - 126px);
  }
  .apks3 .apk-icon .info .title {
    font-size: 24px;
  }
  .apks3 .apk-icon .info .modText {
    font-size: 16px;
  }
  .apks3 .apk-icon .info .mod-feature,
  .apks3 .apk-icon .info .version,
  .apks3 .apk-icon .info .downloadText {
    font-size: 16px;
  }
  .apks li {
    margin-bottom: 40px;
  }
  .apk-icon2 .ctAll {
    padding-top: 90px;
    margin-top: -90px;
    padding: 90px 4px 4px;
  }
  .apk-icon2 .ctAll .bgModText {
    margin: 5px 15px;
  }
  .apk-icon2 .ctAll .bgModText .modText {
    font-size: 14px;
  }
  .apk-icon2 .thumb {
    width: 120px;
    height: 120px;
  }
  .apk-icon2 .thumb img {
    width: 120px;
    height: 120px;
  }
  .apk-icon2 .title {
    font-size: 20px;
    margin-top: 5px;
  }
  .apk-icon2 .ctVersionSize {
    font-size: 14px;
  }
  .apk-icon2 .ctVersionSize .version {
    margin-top: 2px;
  }
  .apk-icon2 .ctVersionSize .mod-feature {
    margin-top: 2px;
  }
  .accordion .ahead {
    padding: 10px 25px;
  }
  .accordion .abody {
    padding: 10px 25px;
  }
  .entry-mod .accordion {
    display: inline-block;
  }
  .box-categories {
    padding: 10px 20px;
  }
  .box-categories a {
    width: 33.333%;
  }
  .sbhTitle {
    font-size: 1.5rem;
  }
  .entry-faq .accordion .ahead {
    padding: 16px 0px;
  }
  #page-body {
    background: none;
  }
  .owl-carousel.slideapk .owl-dots {
    margin-bottom: 16px;
    padding-top: 6px;
  }
  .btn-discord {
    font-size: 1.125rem;
    width: 521px;
  }
  .btn-discord .icon {
    margin-right: 16px;
  }
  .btn-discord:visited {
    color: #fff;
  }
  .box-cross {
    position: relative;
  }
  .box-cross .bc-title {
    font-size: 20px;
  }
  .mod-accordion .ahead {
    padding: 18px 25px;
  }
  .mod-accordion .abody {
    padding: 0;
  }
  .mod-accordion .wrap-box-mod {
    padding: 16px 25px;
  }
  .audio-player .controls {
    display: flex;
    align-items: center;
  }
  .audio-player .controls .item {
    margin-right: 40px;
  }
  .blog .info .title {
    height: 50px;
    overflow: hidden;
  }
  .blog .info .description {
    height: 88px;
    overflow: hidden;
  }
  .sort-controls {
    justify-content: flex-start;
    margin-bottom: 21px;
    margin-top: 27px;
  }
  .sort-controls li a {
    min-width: 138px;
    box-sizing: border-box;
    font-size: 18px;
  }
  #comments .form-comment textarea {
    height: 170px;
  }
  #comments .holder-comments .lch-body .wraploadmore {
    margin-left: 75px;
  }
  #comments .rating-detail .rt-l {
    width: 35%;
    margin-right: 40px;
    padding: 20px 0;
    padding-right: 43px;
  }
  #comments .rating-detail .rt-l .score {
    font-size: 3.75rem;
  }
  #comments .rating-detail .rt-l .info {
    font-size: 1rem;
  }
  #comments .rating-detail .rt-r {
    padding: 0 45px;
    width: 65%;
  }
  #comments .rating-detail .rt-r .line {
    height: 25px;
  }
  #comments .rating-detail .rt-r .line .title,
  #comments .rating-detail .rt-r .line .count {
    line-height: 25px;
  }
  .list-comments li .avatar {
    width: 50px;
    height: 50px;
  }
  .list-comments li .info {
    padding-left: 70px;
  }
  .list-comments li .list-replies .avatar {
    width: 40px;
    height: 40px;
  }
  .list-comments li .list-replies .info {
    padding-left: 60px;
  }
  .list-comments li .wraploadmore {
    margin-left: 65px !important;
  }
  .ringtonecontent .entry-share .a2a_kit a {
    min-width: 153px;
  }
  .ringtonecontent .entry-share .a2a_kit a svg {
    margin-right: 20px;
  }
  .ringtones li {
    margin-bottom: 16px;
  }
  .wrapcontent table thead th {
    padding: 12px 16px;
  }
  .wrapcontent table tbody tr td {
    padding: 10px 16px;
  }
  .page-single .entry-apk-rating .page-title {
    float: right;
    width: calc(100% - 116px);
  }
  .page-single .entry-apk-rating .thumb {
    float: left;
  }
  .page-single .entry-apk-rating .thumb img {
    margin-bottom: 0;
  }
  .page-single .entry-apk-rating .info {
    text-align: left;
    margin-left: 116px;
  }
}
@media screen and (min-width: 500px) {
  .mod_version .tablayout .tabcontent .tab_download {
    width: 50%;
    float: left;
  }
  .mod_version .tablayout .tabcontent .tab_right {
    float: right;
    width: 50%;
  }
  .mod_version .tablayout .tabcontent .subcribeWrp {
    width: 100%;
  }
  .sub {
    width: 100%;
    text-align: center;
    padding-top: 124px;
  }
  .owl-carousel .item .btnDownload {
    padding: 0.6rem 0.8rem;
  }
  .owl-carousel .item .btnDownload p {
    font-size: 13px;
  }
  .owl-carousel .item .btnDownload span {
    font-size: 13px;
    width: 1.6rem;
    height: 1.6rem;
  }
  .owl-carousel .item .btnDownload span svg {
    height: 0.8rem;
    width: 0.8rem;
  }
}
@media screen and (min-width: 992px) {
  .list_apk_new .body.list_apk .apk_icon {
    display: block;
  }
  .list_apk_new .body.list_apk ul {
    gap: 24px;
  }
  .list_apk_new .body.list_apk li {
    width: calc(33.333333% - 16px);
  }
  .list_apk_new .body.list_apk .content_icon {
    width: calc(100% - 84px);
  }
  .mtbreadcrum {
    margin-top: 80px;
  }
  .secbox {
    margin-left: 0px;
    margin-right: 0px;
  }
  .wrap-box-mod .ctIcRow .links .item {
    padding: 8px 12px;
    margin-left: auto;
    margin-right: auto;
  }
  .box-dropdown .dd-toggle:hover .icon,
  .box-dropdown .dd-toggle:hover .avatar {
    transform: scale(0.85);
    opacity: 0.8;
  }
  .box-dropdown .dd-content {
    margin-top: 10px;
  }
  .apks3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -10px;
    margin-right: -10px;
  }
  .apks3 li {
    width: 20%;
  }
  #page-body {
    padding-left: 0px;
    padding-right: 0px;
  }
  .bgAll {
    top: 100px;
  }
  .wrapcontent > * {
    word-break: inherit;
  }
  .w4 li {
    width: 25%;
    box-sizing: border-box;
  }
  .blogs li,
  .apks li {
    margin-bottom: 35px;
  }
  .mod-accordion .ahead {
    padding: 15px 25px;
  }
  .box-faq .bfaq-head {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
  }
  .box-faq .bfaq-head .item {
    float: left;
    width: 33%;
    margin-bottom: 0;
    text-align: center;
    padding: 11px 10px;
    box-sizing: border-box;
    margin-right: 0.5%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .box-faq .bfaq-head .item:hover, .box-faq .bfaq-head .item.open {
    background-color: #fff;
    border-color: #707070;
    border-bottom: none;
    color: #000;
    padding-bottom: 17px;
  }
  .box-faq .bfaq-head .item:last-child {
    margin-right: 0;
  }
  .box-faq .bfaq-head::after {
    display: block;
    content: "";
    clear: both;
  }
  .box-faq .bfaq-body {
    padding-top: 50px;
  }
  .box-faq .bfaq-body .item .box-showless {
    padding: 30px 30px 45px 30px;
  }
  .audio-player .controls .item {
    margin-right: 75px;
  }
  .audio-player .controls .item .play,
  .audio-player .controls .item .time {
    margin-right: 20px;
  }
  .audio-player .controls .item .download,
  .audio-player .controls .item div.downloadcount {
    margin-right: 40px;
  }
  .audio-player .controls .item div.btn-icon {
    font-size: 14px;
  }
  .audio-player .controls .item div.btn-icon svg {
    margin-right: 5px;
  }
  .slideapk .apk-image .info {
    padding: 16px 60px;
  }
  .slideapk .apk-image .info .title {
    font-size: 1.8125rem;
  }
  .slideapk .apk-image .info .title,
  .slideapk .apk-image .info .author {
    margin-bottom: 10px;
  }
  .slideapk .apk-image .info .author {
    font-size: 1rem;
  }
  .slideapk .apk-image .info .version {
    font-size: 1.125rem;
  }
  .slideapk .apk-image .info .version svg {
    width: 18px !important;
    height: 18px !important;
  }
  #comments .rating-detail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 16px;
  }
  #comments .rating-detail .rt-l {
    width: 35%;
    border-right: 1px solid #ddd;
    margin-bottom: 0;
  }
  #comments .rating-detail .rt-l .info {
    width: 100%;
    margin: 0 auto;
  }
  #comments .rating-detail .rt-l .info div {
    position: relative;
    line-height: 24px;
  }
  #comments .rating-detail .rt-r {
    width: 75%;
  }
  #comments .form-comment textarea {
    padding: 16px;
  }
  #table-other-vers {
    max-height: 336px;
  }
  .box-cross .ctTitleDesc {
    margin-left: 0px;
  }
}
@media screen and (min-width: 1120px) {
  .iconTitle {
    width: 48px;
    height: 48px;
  }
  .iconTitle svg {
    width: 24px;
    height: 24px;
  }
  .sbhTitle .ctBtnSeeMore {
    margin-top: 13px;
  }
  .owl-carousel .item .btnDownload {
    padding: 0.4rem 0.6rem;
  }
  .owl-carousel .item .btnDownload p {
    font-size: 12px;
  }
  .owl-carousel .item .btnDownload span {
    font-size: 12px;
    width: 1.2rem;
    height: 1.2rem;
  }
  .owl-carousel .item .btnDownload span svg {
    height: 0.6rem;
    width: 0.6rem;
  }
  .blogs li {
    width: 33%;
  }
  .ctSlider {
    margin-left: 0px;
    margin-right: 0px;
  }
  .thumb-over {
    width: 100%;
    margin-left: 0;
  }
  .page-single2 {
    width: 100%;
    margin-left: 0;
  }
  .bgAll {
    height: 3000px;
    top: 100px;
  }
  .bsc-list2 {
    padding: 30px;
  }
  .bsc-list2 a {
    font-size: 16px;
  }
  .bsc-list2 svg {
    width: 60px;
    height: 60px;
    margin-right: 31px;
  }
  .sort-controls {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .pagination ul li a {
    font-size: 14px;
    width: 32px;
    height: 32px;
  }
  .pagination ul li a svg {
    width: 45px;
  }
  .apks li {
    width: 25%;
  }
  .row {
    display: flex;
    justify-content: space-between;
  }
  .row .col-body {
    width: 850px;
  }
  .row .col-sidebar {
    width: 200px;
  }
  .bs-categories .bs-body {
    max-height: 518px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .bs-categories .bs-body .bsc-list li a svg {
    min-width: 40px;
  }
  .bsc-list li {
    width: 100%;
  }
  .apkincategories .apk .info {
    padding: 15px 10px;
  }
  .apkincategories .apk .info .title {
    font-size: 1.125rem;
  }
  .apkincategories .apk .info .author,
  .apkincategories .apk .info .version {
    font-size: 0.75rem;
  }
  .bs-ads {
    height: 600px;
  }
  .blog .info {
    padding: 16px;
  }
  .page-form-space {
    padding: 100px 0 100px 0;
  }
}
.logoText {
  letter-spacing: 5px;
  font-size: 28px;
  font-weight: bold;
  color: #212121;
}

.app {
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  color: inherit;
  display: grid;
  grid-template-rows: 75px;
  grid-template-columns: 70px calc(100% - 75px - 15px);
  gap: 15px;
  width: 100%;
}

.app-icon {
  width: 75px;
  height: 75px;
  position: relative;
  border-radius: 15px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.app-icon img {
  border-radius: 15px;
  aspect-ratio: 1/1;
}

.app-name {
  width: 100%;
  position: relative;
  align-self: center;
}

.app-name h1 {
  line-height: 25px;
}

.app-name h1 span {
  font-weight: 400;
}

.app-name .font-size__large {
  line-height: 1.5;
  font-weight: normal;
}

@media only screen and (max-width: 600px) {
  .app-name .font-size__large {
    font-size: 1.35rem;
    line-height: 1.3;
  }
}
.app-tags {
  margin-top: 3px;
}

.app-tag {
  margin-right: 5px;
}

.app-tag::before {
  content: "•";
  color: #ff822d;
  margin-right: 5px;
}

.app-sub-action {
  display: block;
  position: absolute;
  top: 20px;
  right: 15px;
}

@media only screen and (max-width: 480px) {
  .app-genre,
  .app-sub-action {
    display: none;
  }
}
.app-sub-action-button {
  padding: 0px 15px;
  background: #1bbc9b;
  color: #fff;
  border-radius: 15px;
  display: block;
  font-size: 0.9em;
}

.app-rating {
  user-select: none;
  -webkit-user-select: none;
  margin-left: -2px;
}

.app-rating span {
  background-color: #ddd;
}

.app-rating span.active {
  background-color: #ff822d;
}

.app-rating .star {
  width: 18px !important;
  height: 18px !important;
}

.star {
  display: inline-block;
  width: 36px;
  /* Width of the SVG */
  height: 36px;
  /* Height of the SVG */
  background-color: #9e9e9e;
  /* Default color */
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="m480-292.46-155.61 93.84q-8.7 5.08-17.43 4.27-8.73-.81-15.8-5.88-7.08-5.08-10.93-13.27-3.84-8.19-1.23-18.12l41.31-176.69-137.38-118.92q-7.7-6.69-9.81-15.5-2.12-8.81 1.11-17.12 3.23-8.3 9.31-13.57t16.62-6.89l181.3-15.84L451.85-763q3.84-9.31 11.65-13.77 7.81-4.46 16.5-4.46 8.69 0 16.5 4.46 7.81 4.46 11.65 13.77l70.39 166.85 181.3 15.84q10.54 1.62 16.62 6.89 6.08 5.27 9.31 13.57 3.23 8.31 1.11 17.12-2.11 8.81-9.81 15.5L639.69-408.31 681-231.62q2.61 9.93-1.23 18.12-3.85 8.19-10.93 13.27-7.07 5.07-15.8 5.88-8.73.81-17.43-4.27L480-292.46Z"/></svg>');
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="m480-292.46-155.61 93.84q-8.7 5.08-17.43 4.27-8.73-.81-15.8-5.88-7.08-5.08-10.93-13.27-3.84-8.19-1.23-18.12l41.31-176.69-137.38-118.92q-7.7-6.69-9.81-15.5-2.12-8.81 1.11-17.12 3.23-8.3 9.31-13.57t16.62-6.89l181.3-15.84L451.85-763q3.84-9.31 11.65-13.77 7.81-4.46 16.5-4.46 8.69 0 16.5 4.46 7.81 4.46 11.65 13.77l70.39 166.85 181.3 15.84q10.54 1.62 16.62 6.89 6.08 5.27 9.31 13.57 3.23 8.31 1.11 17.12-2.11 8.81-9.81 15.5L639.69-408.31 681-231.62q2.61 9.93-1.23 18.12-3.85 8.19-10.93 13.27-7.07 5.07-15.8 5.88-8.73.81-17.43-4.27L480-292.46Z"/></svg>');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  vertical-align: middle;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  position: relative;
  margin: 0.5rem 0 1rem 0;
  border-radius: 10px;
}
.card .card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0.75) 100%);
  border-radius: 10px;
  z-index: 2;
  padding-bottom: 10px;
  padding-top: 30px;
}
.card .card-title,
.card .card-excerpt {
  margin: 0 10px;
  color: #fff;
}
.card .card-title h3,
.card .card-excerpt h3 {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}
.card img {
  aspect-ratio: 2/1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.clickable {
  opacity: 1;
  transition: 250ms ease-in-out;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.has-shadow {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0), 0 3px 1px -2px rgba(0, 0, 0, 0), 0 1px 5px 0 rgba(0, 0, 0, 0.25);
}

.flex-home .flex-item {
  flex: 0 1 23%;
}

@media only screen and (max-width: 600px) {
  .flex-home .flex-item {
    flex: 0 1 48%;
  }
}
.flex-container-2 {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  text-overflow: ellipsis;
  scroll-snap-type: x mandatory;
}
.flex-container-2 .app {
  margin-right: 15px;
  grid-template-rows: 75px;
  grid-template-columns: 85px;
  gap: 10px;
}
.flex-container-2 h3 {
  font-size: 13px;
  font-weight: 500;
  color: #212121;
}

.appInfo {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.appInfo .appInfo_mainDetail {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: rgb(23, 23, 23);
}
.appInfo .appInfo_subDetail {
  font-weight: normal;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  color: rgb(23, 23, 23);
  white-space: nowrap;
}

.downloadContainer {
  border: 1px solid rgb(235, 235, 235);
  border-radius: 16px;
  padding-bottom: 0.5rem;
  padding-top: 8px;
  margin-top: 16px;
}
.downloadContainer .downloadBtn {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  height: 56px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 14px;
  transition: box-shadow 0.25s;
  color: white;
  background-color: #1bbc9b;
  width: 100%;
  font-size: 14px;
}

.ratingContainer {
  width: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 8px;
}
.ratingContainer .miniRatingContainer {
  display: flex;
  flex-flow: row;
  -webkit-box-align: center;
  align-items: center;
}
.ratingContainer .miniRatingContainer .bKNglt {
  display: flex;
  flex-direction: row;
  font-size: 10px;
  line-height: 10px;
  padding: 0.25rem;
}
.ratingContainer .miniRatingContainer .starContainer {
  font-size: 12px;
  color: rgb(97, 97, 97);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  margin-right: 5px;
}
.ratingContainer .miniRatingContainer .starContainer img {
  width: 16px;
  height: 16px;
}
.ratingContainer .miniRatingContainer .ratingScore {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: rgb(23, 23, 23);
}
.ratingContainer .miniRatingContainer .jpVDRB {
  font-size: 10px;
  line-height: 14px;
  color: rgb(111, 111, 111);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.ratingContainer .grwJfJ {
  width: initial;
}
.ratingContainer .pegi {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.ratingContainer .glYDOH {
  width: 12px;
  height: 16px;
}
.ratingContainer .cdSgtT {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  margin-left: 6px;
}

.grwJfJ {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  margin-top: 0.5rem;
  -webkit-box-pack: center;
  justify-content: center;
}
.grwJfJ .blborz {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: rgb(23, 23, 23);
}
.grwJfJ .jcnLku {
  font-size: 10px;
  line-height: 14px;
  color: rgb(111, 111, 111);
  white-space: nowrap;
  margin-left: 4px;
  margin-right: 4px;
}
.grwJfJ .beNzht {
  font-size: 10px;
  line-height: 14px;
  color: rgb(23, 23, 23);
}

.appControl {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  scrollbar-width: none;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.appControl .appControl_item {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: rgb(111, 111, 111);
  cursor: pointer;
  margin-right: 1.5rem;
  margin-top: 1rem;
}
.appControl .appControl_item.active {
  color: #1bbc9b;
  border-bottom: 1px solid #1bbc9b;
}

.current_rating {
  background-size: auto 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFD700' 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%;
}

.Kqaep {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgb(235, 235, 235);
  padding: 1rem;
}

.dHjtkP {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: rgb(23, 23, 23);
  font-style: normal;
  margin-bottom: 11px;
}

.fOmFIn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
}

.feHwps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
}

.hyvrS {
  margin-left: auto;
}

.kxJGCc {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 4px;
  max-width: 100%;
}

.gIkYdN {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: rgb(23, 23, 23);
  margin-right: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cvkavv {
  margin-left: 6px;
  width: 16px;
  height: 16px;
}

.iJfTuT {
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  color: rgb(111, 111, 111);
  margin-right: 2px;
}

.gEpwez {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 4px;
}

.iJfTuT {
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  color: rgb(111, 111, 111);
  margin-right: 2px;
}

.hdwVVt {
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  color: rgb(111, 111, 111);
  margin-right: 2px;
  margin-left: 12px;
}

.fDAbyw {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 96px;
  height: 40px;
  border: 1px solid #1bbc9b;
  box-sizing: border-box;
  border-radius: 16px;
  font-weight: 500;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  color: #1bbc9b;
  cursor: pointer;
}
.fDAbyw:hover {
  opacity: 0.75;
}

@media screen and (max-width: 992px) {
  .d-none-md {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .d-none-pc {
    display: none;
  }
  .page_single_new .thumb_title .developer {
    flex-direction: column;
    align-items: normal;
  }
  .page_single_new .thumb_title .cate {
    margin-left: 0;
  }
  .appInfoContainer {
    display: flex;
    justify-content: space-between;
  }
  .appInfo_item {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .downloadContainer {
    padding-bottom: 0;
  }
}

/*# sourceMappingURL=style.css.map */
