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

@keyframes pulse_br {
  70% {
    box-shadow: 0 0 0 8px rgba(237, 22, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(237, 22, 80, 0);
  }
}
html {
  font-family: "segoe ui", Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #000000;
  background: #f5f6f8;
  letter-spacing: 0.005em;
}

.off-scroll {
  overflow-y: hidden;
}

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

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

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

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

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

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

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

.w3 li {
  width: 50%;
}

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

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

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

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

.btn-icon .icon,
.btn-icon span {
  display: inline-block;
  vertical-align: middle;
}
.btn-icon .icon {
  margin-right: 5px;
}

.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 rgba(112, 112, 112, 0.5);
  color: #000;
}
.btn-outline-dark:hover {
  background-color: #707070;
  color: #fff;
}

.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: block;
}
.box-dropdown .dd-toggle {
  user-select: none;
}
.box-dropdown .dd-content {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: max-content;
  background-color: #fff;
  box-shadow: 0 0 5px rgb(0, 0, 0);
  border-radius: 8px;
  display: none;
}
.box-dropdown .dd-content a {
  display: block;
  width: 100%;
}
.box-dropdown .dd-content a:first-child {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.box-dropdown .dd-content a:last-child {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

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

.secbox {
  margin-bottom: 32px;
}

#page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #3A640A;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.02), -2px 2px 4px rgba(0, 0, 0, 0.08);
  z-index: 9;
}
#page-header #menu-holder {
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: #f5f6f8;
  z-index: 10;
  box-sizing: border-box;
  overflow-y: auto;
  left: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100vh;
}
#page-header #menu-holder .menu-content {
  position: relative;
  height: 100%;
  padding-top: 6vh;
}
#page-header #menu-holder .menu-content .iconCloseMenu {
  position: absolute;
  top: 10px;
  right: 10px;
}
#page-header #menu-holder .menu-content .iconCloseMenu svg rect {
  fill: #3A640A;
}
#page-header #menu-holder .language {
  position: absolute;
  top: 10px;
  left: 10px;
}
#page-header #menu-holder .language .dd-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#page-header #menu-holder .language .dd-toggle::after {
  content: "";
  position: absolute;
  right: -16px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #3A640A;
  transition: transform ease-in-out 0.15s;
}
#page-header #menu-holder .language .dd-content {
  margin-top: 6px;
  left: 0;
}
#page-header #menu-holder .language .dd-content a {
  padding: 8px 12px;
  color: #3A640A;
}
#page-header #menu-holder .language.open .dd-toggle::after {
  transform: rotate(180deg);
}
#page-header #menu-holder.open {
  transform: translateX(0);
  transition: transform 0.3s ease;
}
#page-header #menu-holder .nmi-menu-toggle {
  float: right;
}
#page-header #menu-holder .menu {
  position: relative;
  list-style: none;
  margin-left: 0;
  margin-top: 1vh;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#page-header #menu-holder .menu li {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  margin-left: -16px;
  position: relative;
}
#page-header #menu-holder .menu li a {
  position: relative;
}
#page-header #menu-holder .menu li a span {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px;
  padding-top: 20px;
  font-weight: 700;
  color: #556481;
}
#page-header #menu-holder .menu li:first-child {
  width: 100%;
  justify-content: center;
  margin-bottom: -32px;
}
#page-header #menu-holder .menu li:first-child span {
  padding-bottom: 20px;
  padding-top: 0;
}
#page-header #menu-holder .menu li:last-child {
  justify-content: center;
  margin-left: 0;
  margin-top: 40px;
}
#page-header #menu-holder .menu li:last-child span {
  position: inherit;
}
#page-header #menu-holder .menu li:nth-child(3) {
  justify-content: flex-start;
  margin-left: -34px;
}
#page-header #menu-holder .menu li:nth-child(3) span {
  padding-left: 28px;
}
#page-header #menu-holder .menu li:nth-child(4) {
  position: absolute;
  justify-content: center;
  align-items: center;
  margin-left: 0px;
  top: 77px;
}
#page-header #menu-holder .menu li:nth-child(4) a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.1);
  height: 100px;
  width: 100px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  background-color: #FF800C;
  padding: 10px;
}
#page-header #menu-holder .menu li:nth-child(4) .iconNavWrapper {
  width: 100%;
  height: 100%;
}
#page-header #menu-holder .menu li:nth-child(4) svg {
  width: 100%;
  height: 100%;
}
#page-header #menu-holder .menu li:nth-child(4) span {
  color: white;
  position: absolute;
  padding: 0;
  font-size: 20px;
}
#page-header #menu-holder .menu::after {
  content: "";
  width: 130px;
  height: 20px;
  background: url("/assets/image/logo/loreapk-logo-3.png");
  background-size: cover;
  position: absolute;
}
#page-header #menu-holder .menuTitle {
  font-weight: 700;
  font-size: 20px;
  color: #556481;
  text-align: center;
  text-transform: uppercase;
}
#page-header #menu-holder .btn-fef-submit.signin {
  margin-top: 3vh;
  box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.15);
}
#page-header #menu-holder .btn-fef-submit.signin span {
  font-variant: all-small-caps;
}
#page-header #menu-holder .btn-fef-submit {
  margin-top: 16px;
  margin-bottom: 16px;
}
#page-header #menu-holder .btn-fef-submit.signup {
  background-color: #fff;
  border: 1px solid #3A640A;
}
#page-header #menu-holder .btn-fef-submit.signup span {
  color: #3A640A;
  font-weight: 800;
  line-height: 20px;
  font-size: 16px;
  font-variant: all-small-caps;
}
#page-header #menu-holder .lostPass {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
#page-header #menu-holder .socials {
  position: absolute;
  bottom: 37px;
  justify-content: center;
  margin-left: 0;
  width: 100%;
}
#page-header #menu-holder .socials li {
  margin: 0 8px;
}
#page-header #menu-holder .menuFooterTop {
  position: absolute;
  bottom: 17px;
  height: 3px;
  width: 100%;
  background: #3A640A;
}
#page-header #menu-holder .menuFooterBot {
  position: absolute;
  bottom: 0;
  height: 10px;
  width: 100%;
  background: #3A640A;
}
#page-header .ph-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  line-height: 1em;
}
#page-header .ph-left .logo {
  display: block;
}
#page-header .ph-left .logo img {
  display: block;
  height: 40px;
  width: 195px;
}

.login {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  position: relative;
}
.login .avatar {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.login .dd-toggle {
  line-height: 1rem;
}
.login .dd-toggle::after {
  display: none;
}
.login .dd-toggle img.avatar {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
}
.login .dd-content {
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  top: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.login .dd-content a {
  color: #3A640A;
  padding: 6px 12px;
  font-weight: normal;
  font-size: 0.856rem;
}
.login .dd-content a:hover {
  background-color: #3A640A;
  color: #fff;
}
.login.open .dd-content {
  display: flex;
}

.sbHomeChoices {
  padding: 0 10px;
}

.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;
}

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

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

.title {
  font-weight: 700;
  font-size: 12px;
  color: rgb(23, 23, 23);
}

.version,
.cate {
  font-weight: 400;
  font-size: 12px;
  color: #1f232c;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
.row li {
  width: 50%;
  padding: 0 8px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.apkHomeGames {
  list-style: none;
}

.apkHomeApps {
  list-style: none;
}

.apkInCategories {
  list-style: none;
  margin-left: 0;
}
.apkInCategories li {
  margin-bottom: 20px;
}

.apkListSearch {
  list-style: none;
}
.apkListSearch li {
  width: 100%;
}
.apkListSearch .verCate .divide {
  margin: 0 30px;
}

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

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

.table-res {
  max-width: 100%;
  overflow-x: auto;
  padding: 20px 12px;
  background: #ffffff;
  border: 2px solid #ffbf85;
  border-radius: 8px;
}

.wrapcontent {
  line-height: 1.8;
}
.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);
}
.wrapcontent p {
  overflow: hidden;
}
.wrapcontent p iframe {
  margin-left: 50%;
  transform: translateX(-50%);
}

.sbhomeseo {
  margin-bottom: 20px;
}
.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: 1.5rem;
}
.sbhomeseo .sbbody {
  padding: 10px 0;
}

.seeMoreApk {
  margin-top: 2px;
  float: right;
  font-weight: 600;
  font-size: 12px;
  text-decoration-line: underline;
  color: #4d4d4d;
  white-space: nowrap;
}
.seeMoreApk:hover {
  color: #3A640A;
  opacity: 0.8;
  transition: all 0.5s ease;
}

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

.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;
}

.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 {
  float: left;
  margin: 0 3px;
}
.pagination ul li:first-child svg {
  transform: rotate(180deg);
}
.pagination ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #77839a;
  border: 1px solid #77839a;
  border-radius: 100px;
}
.pagination ul li:hover a, .pagination ul li.active a {
  background: #3A640A;
  border: 1px solid #3A640A;
  border-radius: 100px;
  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:hover a {
  opacity: 0.6;
}
.pagination ul li .plus {
  line-height: 25px;
  padding: 0 2px;
  font-size: 20px;
  color: #555;
}
.pagination ul::after {
  content: "";
  display: block;
  clear: both;
}

#adminBar {
  position: fixed;
  left: 0;
  bottom: 60px;
  background: transparent;
  z-index: 9;
  padding: 0 20px;
  text-align: center;
}
#adminBar a {
  color: #fff;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background: red;
  margin: 4px 8px;
  border-radius: 3px;
}
#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 {
  border-radius: 16px;
  border: 1px solid rgb(235, 235, 235);
}
.blog.search .info .title {
  height: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 6px;
  font-weight: bold;
  color: rgb(23, 23, 23);
}
.blog.search .info .time {
  margin-top: 6px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #777;
}
.blog.search .info .time svg {
  margin-right: 8px;
  fill: #777;
}
.blog.search figure {
  max-width: 100%;
  height: auto;
}

#page-footer {
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), -4px 4px 8px rgba(0, 0, 0, 0.06);
}
#page-footer ul {
  list-style: none;
  margin-left: 0;
}
#page-footer .pf-Top {
  padding: 24px 10px 32px;
}
#page-footer .pf-Top .pf-logo {
  margin-bottom: 8px;
}
#page-footer .pf-Top .pf-logo .logo {
  display: block;
}
#page-footer .pf-Top .pf-logo .logo img {
  display: block;
  margin: 0 auto;
}
#page-footer .pf-Top .pf-logo .sitename {
  margin: 16px auto;
}
#page-footer .pf-Top .pf-menu {
  margin: 20px 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page-footer .pf-Top .pf-menu .divide {
  width: 2px;
  height: 14px;
  background: #ccd0d9;
}
#page-footer .pf-Top .pf-menu .divide:last-child {
  display: none;
}
#page-footer .pf-Top .pf-menu li {
  margin: 0 16px;
}
#page-footer .pf-Top .pf-menu li a {
  font-weight: 600;
  font-size: 12px;
  color: #3A640A;
}
#page-footer .pf-Top .pf-menu li a:hover {
  color: #000;
  opacity: 0.7;
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.socials {
  display: flex;
  justify-content: center;
}
.socials li {
  display: inline-block;
  margin: 0 8px;
}
.socials .lang {
  display: flex;
  align-items: center;
}
.socials .lang .language span {
  color: #3A640A;
}
.socials .lang .language .dd-content a {
  padding: 8px;
  color: rgb(111, 111, 111);
}
.socials .social-linkedin svg {
  fill: #0A66C2;
}

.breadcumb {
  margin: -8px 0 24px;
}
.breadcumb ul {
  list-style: none;
  margin: 0;
}
.breadcumb ul li {
  display: inline-block;
  padding-right: 8px;
  text-transform: uppercase;
}
.breadcumb ul li::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
  transform: rotate(-45deg);
}
.breadcumb ul li:last-child::after {
  display: none;
}
.breadcumb ul li a {
  font-weight: 800;
  font-size: 10px;
  color: #4D4D4D;
}
.breadcumb ul li span {
  font-weight: 800;
  font-size: 10px;
  color: #3A640A;
}
.breadcumb ul li a:hover {
  color: #1a73d6;
}

.sort-controls {
  list-style: none;
  display: flex;
  margin-bottom: 20px;
  margin-left: 0;
}
.sort-controls .active a {
  color: #3A640A;
  border-color: #3A640A;
}
.sort-controls li {
  width: 33.3333%;
  margin-bottom: 16px;
}
.sort-controls li a {
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: rgba(85, 100, 129, 0.4);
  border-bottom: 3px solid #e5e5e5;
}
.sort-controls li a:hover {
  color: #3A640A;
  border-color: #3A640A;
  opacity: 0.7;
}

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

.page-author {
  color: #707070;
}

.page-description .page-title {
  background: #3A640A;
  border-radius: 8px 8px 0px 0px;
  font-weight: 800;
  padding: 8px 12px;
  text-align: center;
  color: #ffffff;
}
.page-description .page-title div {
  width: 100%;
}
.page-description .wrapcontent {
  border: 1px solid rgba(255, 128, 12, 0.4);
  border-top: none;
  border-radius: 0px 0px 8px 8px;
  padding: 12px 20px;
}

.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;
}

.textCate {
  text-align: center;
  margin: 32px 0 16px;
  font-weight: 700;
  font-size: 16px;
  color: #556481;
}

.cSeeMoreWrap {
  width: 100%;
  background-color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
}

.cSeeMoreWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #ffcc9e;
}

.catesSeeMore {
  width: fit-content;
  text-align: center;
  color: #3A640A;
  font-weight: 600;
  padding: 16px;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
.catesSeeMore:hover {
  opacity: 0.8;
}
.catesSeeMore::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #3A640A;
  border-bottom: 1px solid #3A640A;
  transform: rotate(45deg);
  margin: 3px 0 0 6px;
}
.catesSeeMore::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #ffcc9e;
}
.catesSeeMore.open::after {
  transform: rotate(225deg);
  margin-top: 7px;
}

.box-categories {
  background-color: #fff;
  padding-bottom: 12px;
}

.bsc-list {
  max-height: 208px;
  overflow: hidden;
  list-style: none;
  padding: 16px;
}
.bsc-list .cateIcon {
  display: flex;
  align-items: center;
  height: 48px;
}
.bsc-list .cateIcon .boxIcon {
  min-width: 44px;
  width: 44px;
  height: 100%;
  border: 1px solid;
  border-right: none;
  border-radius: 8px 0px 0px 8px;
}
.bsc-list .cateIcon .boxIcon svg {
  max-width: 36px;
  max-height: 36px;
}
.bsc-list .cateIcon .cTitle {
  border: 1px solid;
  border-radius: 0px 8px 8px 0px;
  border-left: none;
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: #6098a5;
}
.bsc-list .cateIcon .boxIcon,
.bsc-list .cateIcon .cTitle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bsc-list.open {
  max-height: fit-content;
}

.accordion {
  border-radius: 5px;
  overflow: hidden;
}
.accordion .ahead {
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  user-select: none;
  cursor: pointer;
  font-weight: bold;
  background-color: #ededed;
}
.accordion .ahead svg path {
  fill: white;
}
.accordion .ahead span,
.accordion .ahead svg {
  display: inline-block;
  vertical-align: middle;
}
.accordion .ahead .toggle {
  float: right;
  margin-top: 10px;
  margin-left: 20px;
  transform: rotate(180deg);
}
.accordion .ahead .minus {
  display: none;
}
.accordion.open {
  border: 1px solid #ededed;
}
.accordion.open .abody {
  display: block;
}
.accordion.open .toggle {
  transform: rotate(0deg);
}
.accordion.open .minus {
  display: block;
}
.accordion.open .add {
  display: none;
}
.accordion .abody {
  display: none;
  padding: 10px;
  border-radius: 0 0 5px 5px;
}
.accordion .abody a {
  padding: 12px;
  color: #000;
  font-style: italic;
}
.accordion .abody a:hover {
  color: #1a73d6;
}
.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 {
  overflow: hidden;
  border-color: #cccccc;
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 24px;
}
.tnvToc a {
  display: block;
}
.tnvToc .tocList .lvl-h {
  font-weight: 700;
  margin-top: 16px;
  color: #3A640A;
  margin-bottom: 4px;
}
.tnvToc .tocList .lvl-h:first-child {
  margin-top: 0;
}
.tnvToc .tocList .lvl-hh {
  color: #666666;
  font-weight: 400;
  margin-left: 20px;
  margin-top: 8px;
}
.tnvToc .tocList .lvl-hhh {
  margin-left: 40px;
}
.tnvToc .tocList .lvl-hhhh {
  margin-left: 60px;
}

.tocTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #3A640A;
  gap: 12px;
}
.tocTitle .showMore {
  display: flex;
  align-items: center;
}
.tocTitle .showMore svg {
  width: 14px;
  height: 14px;
  fill: #3A640A;
  transition: all 400ms ease;
}
.tocTitle.open .showMore svg {
  transform: rotate(90deg);
}

.boxSeeAllToc {
  padding: 28px 24px 0;
  background: #ffffff;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #cccccc;
  border-radius: 0px 0px 8px 8px;
  margin-bottom: 36px;
}

.bdSeeAllToc {
  padding-top: 20px;
  border-top: 1px solid #3A640A;
  text-align: center;
  margin-bottom: 16px;
}

.seeAllToc {
  font-weight: 600;
  font-size: 12px;
  text-decoration-line: underline;
  color: #3A640A;
  cursor: pointer;
}
.seeAllToc:hover {
  opacity: 0.8;
}

.entry-comment {
  margin-top: 40px;
  max-width: 600px;
  margin: 0 auto;
}
.entry-comment .sbhTitle {
  text-align: center;
  font-weight: 700;
  color: #3A640A;
  padding: 12px 0;
  background: #feecdb;
  border-width: 1px 1px 0px 1px;
  border-style: solid;
  border-color: #ffcc9e;
  border-radius: 8px 8px 0px 0px;
}
.entry-comment .form-comment label {
  display: flex;
  justify-content: center;
}
.entry-comment .form-comment textarea {
  width: 100%;
  resize: vertical;
  background: #fdfdfd;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}
.entry-comment .form-comment .rating-bar {
  margin: 16px 0 20px;
}
.entry-comment .form-comment .vtn-btn-summit .btn-submit {
  background: #ffffff;
  border: 1px solid #3A640A;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  color: #3A640A;
}
.entry-comment .form-comment .vtn-btn-summit .btn-submit:hover {
  background-color: #3A640A;
  color: #ffffff;
}

.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;
}

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

.btn-download {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.25;
  background-color: #1a73d6;
  text-transform: capitalize;
  box-sizing: border-box;
  max-width: 100%;
}
.btn-download:hover {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.btn-download span {
  text-align: left;
  margin-left: 45px;
}
.btn-download .icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.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: #cc0000;
  stroke: #cc0000;
}

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

#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 .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: #ededed;
  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,
.mod-accordion {
  max-width: 500px;
}

.mod-accordion {
  border: 1px solid #cccccc;
  border-radius: 0;
}
.mod-accordion.open {
  border-color: #cccccc;
}
.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;
}

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

#btn-page-scroll {
  position: fixed;
  bottom: 64px;
  right: 5px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  z-index: 9;
  background: #3A640A;
  border-radius: 2px;
  transform: translate3d(0, 70px, 0);
  transition: all 0.5s linear;
  border-radius: 12px;
}
#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 a {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #3A640A;
  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;
}

.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: #fff;
  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);
  }
}
#downloadWrp .btn {
  display: none;
}
#downloadWrp .counter {
  font-size: 3em;
  font-weight: bold;
  color: #3A640A;
  text-align: center;
}
#downloadWrp.done .btn {
  display: flex;
}
#downloadWrp.done .counter {
  display: none;
}

#pageDownload2WrapButton {
  margin: 20px auto 32px;
  display: block;
}
#pageDownload2WrapButton .btn {
  display: none;
}
#pageDownload2WrapButton .btn-submit {
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.04em;
  color: #ffffff;
  width: 200px;
  height: 50px;
}
#pageDownload2WrapButton .counter {
  font-size: 3em;
  font-weight: bold;
  color: #3A640A;
  text-align: center;
}
#pageDownload2WrapButton.done {
  border: 2px solid #ffffff;
  box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.15);
  background: #3A640A;
  border-radius: 8px;
  outline: none;
}
#pageDownload2WrapButton.done .btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
#pageDownload2WrapButton.done .counter {
  display: none;
}

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

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex .checkbox {
  display: flex;
  align-items: center;
}
.flex .checkbox label {
  margin-left: 10px;
}
.flex > * span {
  font-weight: 400;
  color: #556481;
}

.keepLogin,
.lostPass {
  text-decoration: underline;
  color: #556481;
  font-weight: 400;
}

.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: 16px;
  border: 1px solid #3A640A;
}
.btn-fef-sendcode:hover {
  background-color: #3A640A;
  color: #fff;
}

.fef-wrap {
  overflow-y: scroll;
  position: relative;
  padding: 16px 16px 0;
  margin: 0 auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  background: #fff;
  width: auto;
  max-width: 100%;
  border-radius: 2px;
  z-index: 2;
  height: 100%;
}

.fef-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 34px;
  color: #3A640A;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 24px;
}

.fe-form {
  color: #666;
}
.fe-form .fg-input {
  flex: 1;
  position: relative;
  padding: 20px 0;
  font-weight: 600;
  color: #556481;
}
.fe-form .fg-input input {
  margin-top: 8px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #3A640A;
  border-radius: 8px;
  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;
}

.btn-fef-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto 72px;
  font-size: 1.125rem;
  width: 200px;
  background: #3A640A;
  border-radius: 8px;
  border: 2px solid #ffffff;
}
.btn-fef-submit span {
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.btn-fef-submit svg {
  fill: #fff;
  margin-right: 15px;
}

.page-form-space {
  transform: translateY(100vh);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.page-form-space .navigation {
  height: 64px;
  background-color: #3A640A;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: -16px -16px 0;
}
.page-form-space .navigation .btn-close {
  position: absolute;
  cursor: pointer;
  left: 10px;
}
.page-form-space .socials {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}
.page-form-space .socials li {
  margin: 0 8px 0;
}
.page-form-space .modalFooterTop {
  height: 3px;
  width: 100vw;
  background: #3A640A;
  margin: 0 -16px 7px;
}
.page-form-space .modalFooterBot {
  height: 10px;
  width: 100vw;
  background: #3A640A;
  margin: 0 -16px -16px;
}
.page-form-space.open {
  transform: translateY(0);
  opacity: 1;
}

.page-title-search {
  font-weight: 700;
  color: #3A640A;
  text-align: center;
  margin-bottom: 20px;
}

.youtube {
  background-color: #000;
  position: relative;
  padding-top: 55.067%;
  overflow: hidden;
  cursor: pointer;
  margin: 0 auto 20px auto;
  max-width: 600px;
}
.youtube img {
  width: 100%;
  top: -16.82%;
  left: 0;
  opacity: 0.7;
}
.youtube .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}
.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #fff;
}
.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.youtube img,
.youtube .play-button {
  cursor: pointer;
}
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}
.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 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;
}

.ss-item {
  border: 2px solid #3A640A;
  border-radius: 8px;
}

.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 {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: bold;
  font-weight: 700;
  font-size: 16px;
  color: #556481;
  text-transform: uppercase;
}

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

.list-holder {
  margin-top: 40px;
}

.entry-related .sbhTitle {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
}

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

.apk-info-table {
  width: 100%;
  max-width: 100%;
}
.apk-info-table tbody {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.apk-info-table tbody tr {
  margin-bottom: 20px;
  width: 50%;
  padding: 0 12px;
  display: grid;
}
.apk-info-table tbody tr a {
  text-decoration: underline;
}
.apk-info-table tbody tr th,
.apk-info-table tbody tr td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.apk-info-table tbody tr th {
  font-weight: 700;
  color: #556481;
  display: flex;
  align-items: center;
}
.apk-info-table tbody tr th svg {
  margin-right: 8px;
}
.apk-info-table tbody tr td {
  color: #556481;
  margin-left: 28px;
  margin-top: 4px;
}
.apk-info-table tbody tr td.ch-play {
  overflow: inherit;
}
.apk-info-table a:visited {
  color: #1a73d6;
}
.apk-info-table a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.btn-backtopost {
  padding: 6px 16px;
  border: 1px solid #000;
}
.btn-backtopost svg {
  margin-right: 5px;
}
.btn-backtopost:hover {
  background-color: #000;
  color: #fff;
}
.btn-backtopost:hover svg {
  stroke: #fff;
}

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

.entry-faq-download2 .accordion {
  border-radius: 0;
  border: 1px solid #cccccc;
  border-bottom: none;
}
.entry-faq-download2 .accordion:last-child {
  border-bottom: 1px solid #cccccc;
}
.entry-faq-download2 .accordion .ahead {
  position: relative;
  background-color: transparent;
  padding-top: 10px;
  padding-bottom: 10px;
}
.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.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: 22px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.281' height='28.358' viewBox='0 0 22.281 28.358'%3E%3Cg%3E%3Cg transform='translate(0)'%3E%3Cg transform='translate(0)'%3E%3Cpath d='M67.4,7.089a1.013,1.013,0,0,1-1.013-1.013V0H54.238A3.038,3.038,0,0,0,51.2,3.038V25.319a3.038,3.038,0,0,0,3.038,3.038h16.2a3.038,3.038,0,0,0,3.038-3.038V7.089Z' transform='translate(-51.2)' fill='%23009728'/%3E%3C/g%3E%3C/g%3E%3Cg transform='translate(17.217 0.593)'%3E%3Cg%3E%3Cpath d='M341.333,10v4.47h4.47Z' transform='translate(-341.333 -10.001)' fill='%23009728'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Ctext transform='translate(2 17)' fill='%23fff' font-size='9' font-family='OpenSans-Bold, Open Sans' font-weight='700'%3E%3Ctspan x='0' y='0'%3EAPK%3C/tspan%3E%3C/text%3E%3C/svg%3E");
}
.icon-svg.icon-obb {
  width: 22px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.281' height='28.358' viewBox='0 0 22.281 28.358'%3E%3Cg%3E%3Cg transform='translate(0)'%3E%3Cg transform='translate(0)'%3E%3Cpath d='M67.4,7.089a1.013,1.013,0,0,1-1.013-1.013V0H54.238A3.038,3.038,0,0,0,51.2,3.038V25.319a3.038,3.038,0,0,0,3.038,3.038h16.2a3.038,3.038,0,0,0,3.038-3.038V7.089Z' transform='translate(-51.2)' fill='%23e99400'/%3E%3C/g%3E%3C/g%3E%3Cg transform='translate(17.217 0.593)'%3E%3Cg%3E%3Cpath d='M341.333,10v4.47h4.47Z' transform='translate(-341.333 -10.001)' fill='%23e99400'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Ctext transform='translate(2 17)' fill='%23fff' font-size='9' font-family='OpenSans-Bold, Open Sans' font-weight='700'%3E%3Ctspan x='0' y='0'%3EOBB%3C/tspan%3E%3C/text%3E%3C/svg%3E");
}

#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: #cccccc;
  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: #cccccc;
  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 {
  max-width: 580px;
  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;
}

.loginPc {
  display: none;
}

.textCenter {
  text-align: center;
}

.sliderApk {
  margin-left: 0;
  list-style: none;
}

.owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 4px;
  border-radius: 5px;
  background: #e2e5ec;
  margin: 5px 4px;
}

.sliderApk.owl-theme .owl-dots .owl-dot.active span {
  background: #556481;
}

.iconInfo {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.iconInfo .imgIcon {
  max-width: 64px;
  height: 64px;
  border-radius: 4px;
}
.iconInfo .detail {
  margin-left: 10px;
  width: 100%;
}
.iconInfo .detail .verCate {
  display: flex;
  width: 100%;
}
.iconInfo .title {
  font-weight: 600;
  color: #3A640A;
}
.iconInfo .version,
.iconInfo .cate {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 20px;
  font-size: 12px;
  color: #556481;
}
.iconInfo .version svg,
.iconInfo .cate svg {
  margin-right: 5px;
}
.iconInfo .divide {
  border-left: 2px solid rgba(85, 100, 129, 0.3);
  margin: 0 16px;
}

.linkGoogleWrp {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.linkGoogleWrp a img {
  width: 150px;
  height: auto;
  border: 1px solid #3A640A;
  border-radius: 12px;
}

.page-single-title {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #3A640A;
  margin: 20px 0 4px;
}

.singleApkIcon {
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.singleApkIcon img {
  border: 3px solid #3A640A;
  border-radius: 4px;
}

#content-info {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #3A640A;
  margin: 12px 0;
}

.singleApkDownLoad {
  display: flex;
  justify-content: center;
}
.singleApkDownLoad .downloadBtn {
  width: 212px;
  height: 50px;
  animation: pulse_br 1.5s infinite;
  box-shadow: 0 0 0 0 #3A640A;
  border-radius: 8px;
}
.singleApkDownLoad .downloadBtn span {
  white-space: nowrap;
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.04em;
}

.download1Head h1 {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #556481;
  margin: 20px 0;
}

.links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.links .type_APK, .links .type_XAPK, .links .type_OBB {
  width: fit-content;
  border: 1px solid white;
  padding: 4px;
  font-size: 10px;
  border-radius: 4px;
  align-items: center;
  display: flex;
}
.links span {
  left: 60%;
  font-variant: normal;
  display: block;
  width: fit-content;
}

.apkInfoDownload {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.005em;
  color: #556481;
}

.dl-download {
  display: flex;
}

.faq .sbhTitle {
  text-align: center;
  margin-bottom: 16px;
}

.dl2Title {
  margin: 20px 0 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #556481;
}

.sbbody-faq {
  background: #ffffff;
  border: 1px solid #3A640A;
  border-radius: 8px;
  padding: 20px 30px;
  max-width: 600px;
  margin: 0 auto 36px;
}
.sbbody-faq .faq {
  position: relative;
  border-top: 1px solid #dfe1e4;
}
.sbbody-faq .faq:first-child {
  border: none;
}
.sbbody-faq .question {
  padding-bottom: 26px;
  margin-top: 26px;
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #556481;
}
.sbbody-faq .question:first-child {
  margin-top: 14px;
}
.sbbody-faq .question a {
  font-weight: 700;
  font-size: 14px;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #556481;
  padding-right: 10px;
}
.sbbody-faq .question::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 0;
  width: 7px;
  height: 7px;
  border-right: 1px solid #556481;
  border-bottom: 1px solid #556481;
  transform: rotate(-45deg);
}
.sbbody-faq .reply {
  display: none;
  font-weight: 400;
  color: rgba(60, 60, 67, 0.85);
  margin-top: 18px;
  padding-bottom: 26px;
}
.sbbody-faq .active .question {
  padding-bottom: 0;
}
.sbbody-faq .active .question::after {
  transform: rotate(45deg);
}
.sbbody-faq .active .reply {
  display: block;
}

.homeChoicesTitle {
  display: flex;
  justify-content: center;
}

.entry-app-info .sbhTitle,
.entry-comment .sbhTitle,
.faq .sbhTitle {
  justify-content: center;
}

.d-none {
  display: none;
}

.d-none-mb {
  display: none;
}

.pf-menu .iconNavWrapper {
  display: none;
}
.pf-menu span svg {
  display: none;
}

.pageFontSingle .ads300x600 {
  float: right;
  margin-top: 30px;
  display: none;
}
.pageFontSingle .entry-author {
  margin-bottom: 16px;
}
.pageFontSingle .entry-author svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.pageFontSingle .entry-author a {
  text-decoration: none;
  color: #1a73d6;
}
.pageFontSingle .entry-author a:visited {
  color: #1a73d6;
}
.pageFontSingle .entry-author a:hover {
  color: #cc0000;
}
.pageFontSingle .entry-thumb {
  margin-bottom: 10px;
}
.pageFontSingle .entry-thumb img {
  max-width: 100%;
}
.pageFontSingle .box-download {
  margin-bottom: 10px;
}

.fontDemo {
  font-size: 60px;
  word-break: break-all;
}

.previewControlsWrap {
  border-bottom: 1px dashed #CCCCCC;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
}
.previewControlsWrap select {
  border: 1px solid #ccc;
  border-radius: 3px;
  height: 34px;
  display: flex;
  align-items: center;
}
.previewControlsWrap input {
  border: 1px solid #ccc;
  border-radius: 3px;
  height: 34px;
  display: flex;
  align-items: center;
}
.previewControlsWrap .btn {
  color: #fff;
  border-radius: 3px;
  outline: none;
  border: none;
  height: 34px;
  display: flex;
  align-items: center;
}
.previewControlsWrap .btn svg {
  margin-right: 5px;
}
.previewControlsWrap .btn-reset {
  background-color: #4caf50;
}
.previewControlsWrap .btn-primary {
  background-color: #007bff;
}
.previewControlsWrap .group {
  margin-bottom: 16px;
  margin-right: 10px;
}
.previewControlsWrap .group label {
  display: block;
  margin-bottom: 3px;
  font-weight: 400;
  line-height: 1.33;
  color: #000;
}
.previewControlsWrap .group input[name=content] {
  width: 180px;
}
.previewControlsWrap .group select[name=size] {
  width: 45px;
}
.previewControlsWrap .group select[name=weight] {
  width: 82px;
}
.previewControlsWrap .group input[name=color] {
  width: 80px;
}
.previewControlsWrap .group select[name=size],
.previewControlsWrap .group select[name=weight] {
  padding: 6px 2px;
}
.previewControlsWrap .group input[name=color] {
  padding: 6px 8px;
}
.previewControlsWrap .group.groupColor input[name=color],
.previewControlsWrap .group.groupColor .color-picker-wrapper {
  display: inline-block;
}
.previewControlsWrap .group.groupColor input[name=colorpicker] {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.cmList {
  list-style: none;
  user-select: none;
  display: flex;
  flex-wrap: wrap;
}
.cmList li {
  width: 60px;
  height: 70px;
  padding: 10px;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
}
.cmList li .normal {
  font-size: 0.8572rem;
}
.cmList li .cssfont {
  text-align: center;
  display: block;
  font-size: 25px;
  font-family: Arial, Helvetica, sans-serif;
  word-break: break-word;
}

.charMap {
  margin-bottom: 20px;
}
.charMap .cmList {
  margin-bottom: 20px;
}

.color-picker-wrapper {
  height: 34px;
  width: 34px;
  background-color: #000000;
  border-radius: 3px;
}

.downloadWrap .btn {
  padding: 5px 50px;
  border-radius: 5px;
  font-weight: 700;
}

#permalinkPopup .subText {
  padding-top: 40px;
  padding-bottom: 40px;
}
#permalinkPopup #toolPermalink {
  border-radius: 3px 0 0 3px;
}
#permalinkPopup #copy2Clipboard {
  background-color: #1a73d6;
  color: #fff;
  font-weight: bold;
  border-radius: 0 3px 3px 0;
  border-color: #1a73d6;
}

#listFontsWrap .fonts > li {
  list-style: none;
  margin-bottom: 16px;
}
#listFontsWrap .paginationWrap {
  margin-bottom: 20px;
}

.fonts {
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.fonts li {
  width: 100%;
}

.font {
  transition: background-color 0.5s ease-in;
  display: flex;
  width: 100%;
  height: 66px;
  max-width: 400px;
  border: 1px solid #ccc;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 5px;
}
.font .btn-download {
  outline: none;
  border: none;
  border-radius: 12px;
  background-color: #3A640A;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  height: fit-content;
}
.font .author {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
}
.font .author .authorName {
  font-size: 12px;
  color: #333;
  opacity: 0.86;
}
.font:hover {
  background-color: #F2F4F8;
  transition: all 0.5s ease-out;
}

.playViewer {
  padding-top: 12px;
}
.playViewer img {
  max-width: 100%;
  max-height: 100%;
}

.main-max-width {
  max-width: 1200px;
  margin: 0 auto;
}

.newGameWrp {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  min-height: 426px;
  aspect-ratio: 390/426;
}
.newGameWrp iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  min-height: 426px;
}

.list-game {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.list-game .item-game {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #fbc99a;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), -4px 4px 8px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), -4px 4px 8px rgba(0, 0, 0, 0.06);
}
.list-game .cardGame .content figure {
  border-radius: 4px;
}
.list-game .cardGame .content h3 {
  margin-top: 8px;
  color: #000000;
}

.content-game {
  margin: 25px 0;
}

.iconNavSvg {
  display: none;
}

.chplay {
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.chplay img {
  width: 260px;
  border-radius: 4px;
}
.chplay a:hover img {
  width: 260px;
  height: 100%;
  opacity: 0.75;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#page-body {
  padding-top: 16px;
  min-height: 90vh;
}

body {
  background-color: rgb(255, 255, 255);
}

.menu_left {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 -10px;
  padding: 10px;
  z-index: 15;
  border-bottom: 1px solid rgb(235, 235, 235);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), -4px 4px 8px rgba(0, 0, 0, 0.06);
}
.menu_left .logo {
  width: 90px;
}
.menu_left .logo a {
  display: flex;
}
.menu_left .logo img {
  width: 100%;
  height: 100%;
}
.menu_left .menu_toggle {
  display: flex;
  align-items: center;
}
.menu_left .menu_toggle svg {
  width: 24px;
  height: 24px;
}
.menu_left .language a {
  color: rgb(111, 111, 111);
  height: 24px;
}
.menu_left .language span {
  display: none;
}
.menu_left .language .btn-icon .icon {
  height: 16px;
  width: 24px;
  margin-right: 0px;
}
.menu_left .language .dd-content {
  left: 0;
}

#search-holder {
  width: 100%;
  padding: 0px 10px;
  margin: 20px 0;
}
#search-holder.search {
  display: flex;
  align-items: center;
  position: relative;
}
#search-holder.search .form-search {
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 16px;
  width: 100%;
}
#search-holder.search .form-search input {
  border: 0;
  padding: 12px 0 12px 12px;
  width: calc(100% - 40px);
  text-overflow: ellipsis;
  border-radius: 16px;
}
#search-holder.search .form-search button {
  background-color: white;
  position: absolute;
  right: 8px;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 16px;
}
#search-holder.search .form-search button svg {
  width: 100%;
  height: 100%;
}
#search-holder.search .form-search.searching input {
  text-overflow: ellipsis;
}
#search-holder.search #suggest-text {
  display: none;
}
#search-holder.search #suggestions {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 20;
}
#search-holder.search #suggestions .suggestions-holder {
  padding: 12px 8px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background-color: rgba(0, 0, 0, 0.3);
}
#search-holder.search #suggestions .suggestions-holder p {
  background-color: white;
  border-radius: 8px;
  border: 1px solid rgb(235, 235, 235);
  padding: 4px 6px;
  font-weight: 500;
}
#search-holder.search #suggestions .suggestions-holder p strong {
  color: #3A640A;
}

.search.desktop {
  display: none;
  align-items: center;
  position: relative;
}
.search.desktop .form-search {
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 12px;
  width: 100%;
  height: 40px;
}
.search.desktop .form-search input {
  border: 0;
  padding: 12px 0 12px 12px;
  width: calc(100% - 40px);
  text-overflow: ellipsis;
  border-radius: 12px;
  height: 100%;
}
.search.desktop .form-search button {
  background-color: white;
  position: absolute;
  right: 0px;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background-color: rgba(111, 111, 111, 0.1);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.search.desktop .form-search button svg {
  width: 100%;
  height: 100%;
  width: 20px;
  height: 20px;
}
.search.desktop .form-search button svg path {
  fill: rgb(111, 111, 111);
}
.search.desktop .form-search.searching {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.search.desktop .form-search.searching input {
  text-overflow: ellipsis;
}
.search.desktop #suggest-text {
  display: none;
}
.search.desktop #suggestions {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 20;
}
.search.desktop #suggestions .suggestions-holder {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.search.desktop #suggestions .suggestions-holder p {
  border-radius: 8px;
  border: 1px solid rgb(235, 235, 235);
  padding: 4px 6px;
  font-weight: 500;
}
.search.desktop #suggestions .suggestions-holder p strong {
  color: #3A640A;
}

.menu_right {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding-top: 62px;
  z-index: 10;
  background-color: white;
  border-top: 1px solid rgb(235, 235, 235);
  width: 300px;
}
.menu_right a {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.menu_right a span {
  text-align: center;
  color: rgb(111, 111, 111);
  font-weight: 700;
  letter-spacing: 1px;
}
.menu_right .menu {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  justify-content: flex-start;
  z-index: 12;
}
.menu_right .menu li {
  min-width: 90px;
  padding: 8px 10px;
}
.menu_right .menu li.active svg path {
  fill: #3A640A;
}
.menu_right .menu li.active span {
  color: #3A640A;
}
.menu_right .close_toggle {
  position: absolute;
  top: 14px;
  right: 14px;
}
.menu_right .close_toggle svg {
  width: 24px;
  height: 24px;
}
.menu_right .iconNavWrapper {
  width: 24px;
  height: 24px;
}
.menu_right .iconNavWrapper svg {
  width: 100%;
  height: 100%;
}

.shadown {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.6);
}

.apk_lore {
  margin-bottom: 32px;
}
.apk_lore.best_app {
  background: linear-gradient(116.63deg, #DE6B4B 8.97%, #3A640A 92.93%);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 16px;
  border-radius: 24px 4px 24px 4px;
}
.apk_lore.best_app .apk_head .title {
  color: white !important;
}
.apk_lore.best_app .apk_head .title h2 {
  font-size: 1.25rem;
}
.apk_lore.best_app .info .title {
  color: white;
}
.apk_lore.best_app .info .version {
  color: white;
}
.apk_lore .apk_head {
  margin-bottom: 10px;
}
.apk_lore .apk_head .title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 20px;
  color: rgb(23, 23, 23);
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.apk_lore .apk_head .title svg {
  width: 24px;
  height: 24px;
}
.apk_lore .apk_head .title svg path {
  fill: rgb(23, 23, 23);
}
.apk_lore .apk_head .title h4 {
  color: rgb(23, 23, 23);
}
.apk_lore .apk_head .title h2 {
  font-size: 1.25rem;
}
.apk_lore .apk_head .more a {
  color: #3A640A;
}
.apk_lore .apk_head.more {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.apk_lore .apk_list .number_top {
  display: none;
}
.apk_lore .apk_list.list_apk_choice {
  min-height: 180px;
}
.apk_lore .apk_list.list_apk_choice .swiper-slide {
  width: 70%;
  margin-right: 10px;
}
.apk_lore .apk_list.list_apk_choice .swiper-slide img {
  max-height: 400px;
}
.apk_lore .apk_list.list_apk_choice .swiper-slide {
  display: flex;
  justify-content: flex-start;
}
.apk_lore .apk_list.list_apk_choice .swiper-scrollbar {
  position: static;
  margin-top: 12px;
  min-height: 4px;
}
.apk_lore .apk_list.list_apk_choice .swiper-button-prev, .apk_lore .apk_list.list_apk_choice .swiper-button-next {
  color: white;
}
.apk_lore .apk_list.list_apk_choice .apk-image {
  display: block;
  overflow: hidden;
  position: relative;
}
.apk_lore .apk_list.list_apk_choice .apk-image figure {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 248/121;
}
.apk_lore .apk_list.list_apk_choice .apk-image figure img {
  width: 100%;
  height: 100%;
}
.apk_lore .apk_list.list_apk_choice .apk-image .thumb {
  border-radius: 12px;
  overflow: hidden;
}
.apk_lore .apk_list.list_apk_choice .apk-image .version {
  width: 35%;
}
.apk_lore .apk_list.list_apk_choice .apk-image .version .textVer {
  max-width: 75%;
}
.apk_lore .apk_list.list_apk_choice .apk-image .version svg {
  width: 20px;
  height: 20px;
}
.apk_lore .apk_list.list_apk_choice .apk-image .hot {
  position: absolute;
  top: 20px;
  left: -40px;
  background-color: #AD0000;
  padding: 2px 6px;
  transform: rotate(-45deg);
  width: 150px;
  text-align: center;
}
.apk_lore .apk_list.list_apk_choice .apk-image .hot span {
  font-weight: 700;
  color: white;
}
.apk_lore .apk_list.list_apk_choice .apk-image:hover img {
  transform: scale(1.05);
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apk_lore .apk_list.list_apk_choice .apk-image .divide {
  display: none;
}
.apk_lore .apk_list.list_apk_choice .apk-image .cate {
  display: none;
}
.apk_lore .apk_list.list_apk_choice .iconInfo {
  margin-top: 8px;
  min-height: 40px;
}
.apk_lore .apk_list.list_apk_choice .iconInfo .imgIcon {
  border-radius: 16px;
  width: 40px;
  height: 40px;
}
.apk_lore .apk_list.list_apk_choice .iconInfo .title {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: rgb(23, 23, 23);
}
.apk_lore .apk_list.list_apk_best {
  position: relative;
  min-height: 190px;
}
.apk_lore .apk_list.list_apk_best .swiper-slide {
  width: calc(33.333333% - 8px);
  margin-right: 12px;
}
.apk_lore .apk_list.list_apk_best .swiper-slide img {
  max-height: 400px;
}
.apk_lore .apk_list.list_apk_best .swiper-slide {
  display: flex;
  justify-content: flex-start;
}
.apk_lore .apk_list.list_apk_best .swiper-button-prev::after, .apk_lore .apk_list.list_apk_best .swiper-button-next::after {
  display: block;
  background-color: white;
  padding: 0 6px;
  border-radius: 26px;
}
.apk_lore .apk_list.list_apk_best .swiper-button-prev::after {
  content: url(../svg/previous-long-arrow-left-svgrepo-com.svg);
}
.apk_lore .apk_list.list_apk_best .swiper-button-next::after {
  content: url(../svg/next-long-arrow-right-svgrepo-com.svg);
}
.apk_lore .apk_list.list_apk_best .swiper-pagination {
  position: static;
  margin-top: 4px;
}
.apk_lore .apk_list.list_apk_best .swiper-pagination span {
  height: 12px;
}
.apk_lore .apk_list.list_apk_best .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #FFF;
  opacity: 1;
}
.apk_lore .apk_list.list_apk_best .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #3A640A;
  width: 32px;
  height: 8px;
  border-radius: 50px;
  background: #3A640A;
}
.apk_lore .apk_list.list_apk_best .apk-icon {
  display: flex;
  flex-wrap: wrap;
  padding: 8px;
  position: relative;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb {
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  width: 85px;
  height: 85px;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb img {
  width: 100%;
  height: 100%;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_top {
  position: absolute;
  display: block;
  top: -15px;
  left: -5px;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_top svg {
  transform: rotate(90deg);
  width: 48px;
  height: 48px;
  fill: gray;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_top svg path, .apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_top svg g {
  fill: gray;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_top span {
  text-align: center;
  background-color: gray;
  position: absolute;
  top: 15px;
  left: 21px;
  width: 20px;
  height: 20px;
  color: white;
  font-weight: 700;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_1 svg {
  fill: red;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_1 svg path, .apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_1 svg g {
  fill: red;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_1 span {
  background-color: red;
  color: white;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_2 svg {
  fill: orange;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_2 svg path, .apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_2 svg g {
  fill: orange;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_2 span {
  background-color: orange;
  color: rgba(0, 0, 0, 0.9);
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_3 svg {
  fill: yellow;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_3 svg path, .apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_3 svg g {
  fill: yellow;
}
.apk_lore .apk_list.list_apk_best .apk-icon .thumb .number_3 span {
  background-color: yellow;
  color: rgba(0, 0, 0, 0.9);
}
.apk_lore .apk_list.list_apk_best .apk-icon .info {
  width: 100%;
  margin-left: 8px;
  min-height: 50px;
}
.apk_lore .apk_list.list_apk_best .apk-icon:hover {
  opacity: 0.8;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apk_lore .apk_list.list_apk_best .apk-icon:hover .thumb img {
  transform: scale(1.1);
  transition: all 0.5s linear;
  border-radius: 4px;
}
.apk_lore .apk_list.list_apk_best .is_apk {
  display: none;
}
.apk_lore .apk_list.list_app {
  overflow: hidden;
}
.apk_lore .apk_list.list_app .swiper-grid-column > .swiper-wrapper {
  flex-direction: row;
}
.apk_lore .apk_list.list_app .swiper-slide {
  margin-top: 12px !important;
  width: 33.333333%;
}
.apk_lore .apk_list.list_app .swiper_apk_card .swiper-slide {
  margin-top: 12px !important;
  width: 33.333333%;
}
.apk_lore .apk_list.list_app .swiper_apk_card .apk-card {
  margin-right: 12px;
}
.apk_lore .apk_list.list_app .apk-icon {
  display: flex;
  padding: 12px 0 12px 6px;
  box-sizing: border-box;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 12px;
}
.apk_lore .apk_list.list_app .apk-icon .thumb {
  min-width: 56px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.apk_lore .apk_list.list_app .apk-icon .thumb img {
  width: 100%;
  height: 100%;
  transition: all 400ms ease;
}
.apk_lore .apk_list.list_app .apk-icon .is_mod {
  position: absolute;
  bottom: 6px;
  left: 34px;
  transform: translateX(-50%);
  border-radius: 16px;
  font-size: 10px;
  padding: 2px 4px;
  background-color: #AD0000;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.apk_lore .apk_list.list_app .apk-icon .is_mod span {
  color: white;
}
.apk_lore .apk_list.list_app .apk-icon .is_apk {
  position: absolute;
  bottom: 6px;
  left: 34px;
  transform: translateX(-50%);
  border-radius: 16px;
  font-size: 10px;
  padding: 2px 4px;
  background-color: #62bf57;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.apk_lore .apk_list.list_app .apk-icon .is_apk span {
  color: white;
}
.apk_lore .apk_list.list_app .apk-icon .info {
  width: 100%;
  margin-left: 8px;
}
.apk_lore .apk_list.list_app .apk-icon:hover {
  border-radius: rgb(235, 235, 235);
  overflow: hidden;
  border: 1px solid rgb(235, 235, 235);
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), -4px 4px 8px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), -4px 4px 8px rgba(0, 0, 0, 0.06);
  background-color: #f2f5ff;
}
.apk_lore .apk_list.list_app .apk-icon:hover .thumb {
  overflow: hidden;
}
.apk_lore .apk_list.list_app .apk-icon:hover .thumb img {
  transform: scale(1.1);
}
.apk_lore .apk_list.list_app .apk-card {
  padding: 12px;
  display: block;
  background: #ffffff;
  border: 1px solid rgb(235, 235, 235);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), -4px 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  position: relative;
}
.apk_lore .apk_list.list_app .apk-card:hover {
  opacity: 0.8;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #19a4bb;
}
.apk_lore .apk_list.list_app .apk-card .thumb {
  border-radius: 16px;
  aspect-ratio: 85/85;
  position: relative;
}
.apk_lore .apk_list.list_app .apk-card .thumb img {
  border-radius: 12px;
}
.apk_lore .apk_list.list_app .apk-card .is_mod {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 16px;
  padding: 2px 4px;
  background-color: #ad0000;
}
.apk_lore .apk_list.list_app .apk-card .is_mod span {
  color: white;
}
.apk_lore .apk_list.list_app .apk-card .is_apk {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 16px;
  padding: 2px 4px;
  background-color: #3A640A;
}
.apk_lore .apk_list.list_app .apk-card .is_apk span {
  color: white;
}
.apk_lore .apk_list.list_app .apk-card .title {
  margin: 16px 0 16px;
  font-style: normal;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgb(111, 111, 111);
  font-size: 12px;
  line-height: 1rem;
  height: 28px;
  text-align: center;
}
.apk_lore .apk_list.list_app .apk-card .verCate {
  display: flex;
  align-items: center;
}
.apk_lore .apk_list.list_app .apk-card .verCate .version {
  display: flex;
  position: relative;
  line-height: 20px;
  align-items: center;
  width: 100%;
}
.apk_lore .apk_list.list_app .apk-card .verCate .version .textVer {
  margin-left: 5px;
  max-width: 80%;
}
.apk_lore .apk_list.list_app .apk-card .verCate .version svg {
  width: 20px;
  height: 20px;
}
.apk_lore .apk_list.list_app .apk-card .verCate .cate {
  display: none;
  align-items: center;
  line-height: 20px;
  align-items: center;
  width: 100%;
}
.apk_lore .apk_list.list_app .apk-card .verCate .cate div {
  margin-left: 5px;
  max-width: 80%;
}
.apk_lore .apk_list.list_app .apk-card .verCate .divide {
  display: none;
  width: 2px;
  height: 14px;
  background: #ccd0d9;
  margin: 0 25px;
}
.apk_lore .apk_list.list_app .apk-card .downAbs {
  position: absolute;
  right: 12px;
  bottom: 40px;
}
.apk_lore .apk_list.list_app .list_apk_app .swiper-wrapper, .apk_lore .apk_list.list_app .list_apk_game .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  padding-bottom: 4px;
  gap: 12px;
}
.apk_lore .apk_list.list_app .list_apk_app .swiper-slide, .apk_lore .apk_list.list_app .list_apk_game .swiper-slide {
  margin-top: 0 !important;
  width: calc(50% - 6px);
}
.apk_lore .apk_list.list_app .swiper_apk_card_2 .swiper-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.apk_lore .apk_list.list_app .swiper_apk_card_2 .swiper-slide {
  width: calc(33.333333% - 8px);
}
.apk_lore .apk_list.list_blog {
  overflow: hidden;
  list-style-type: none;
}
.apk_lore .apk_list.list_blog .blog {
  box-shadow: none;
}
.apk_lore .apk_list.list_blog .blog figure {
  border-radius: 16px;
  overflow: hidden;
}
.apk_lore .apk_list.list_blog .blog .info {
  margin-top: 12px;
  padding: 0;
}
.apk_lore .apk_list.list_blog .blog .info .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(23, 23, 23);
}
.apk_lore .apk_list.list_blog .blog .info .content {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 14px;
  color: rgb(23, 23, 23);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.apk_lore .apk_list.list_blog .blog .info .whatching {
  margin-top: 1em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.apk_lore .apk_list.list_blog .blog .info .whatching svg {
  width: 14px;
  height: 14px;
}
.apk_lore .apk_list.list_blog .blog .info .whatching span {
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 14px;
  color: rgb(111, 111, 111);
}
.apk_lore .apk_list.list_blog .list_blog_archive {
  display: flex;
  flex-wrap: wrap;
}
.apk_lore .apk_list.list_blog .list_blog_archive .item_list_blog {
  margin-bottom: 1.5rem;
}
.apk_lore .apk_list.list_blog .list_blog_recommend {
  display: flex;
  flex-wrap: wrap;
}
.apk_lore .apk_list.list_category {
  min-height: 210px;
}
.apk_lore .apk_list.list_category .swiper_cate {
  overflow: hidden;
}
.apk_lore .apk_list.list_category .swiper-grid-column > .swiper-wrapper {
  flex-direction: row;
}
.apk_lore .apk_list.list_category .swiper-slide {
  margin-top: 12px !important;
}
.apk_lore .apk_list.list_category a {
  position: relative;
}
.apk_lore .apk_list.list_category a figure {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 112/55;
}
.apk_lore .apk_list.list_category a figure img {
  width: 100%;
  height: 100%;
  transition: all 400ms ease;
}
.apk_lore .apk_list.list_category a .cTitle {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: rgb(255, 255, 255);
  text-wrap: nowrap;
}
.apk_lore .apk_list.list_category a .shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 16px;
}
.apk_lore .apk_list.list_category a:hover img {
  transform: scale(1.1);
}
.apk_lore .apk_list.list_other_version .item_version {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(235, 235, 235);
}
.apk_lore .apk_list.list_other_version .item_version .info {
  display: flex;
  gap: 12px;
  color: rgb(111, 111, 111);
}
.apk_lore .apk_list.list_other_version .item_version .info .icon_other_version {
  height: 60px;
  width: 60px;
  border-radius: 16px;
  overflow: hidden;
}
.apk_lore .apk_list.list_other_version .item_version .info .icon_other_version img {
  max-width: 100%;
  height: auto;
}
.apk_lore .apk_list.list_other_version .item_version .info .title_other_version {
  display: flex;
  flex-direction: column;
}
.apk_lore .apk_list.list_other_version .item_version .info .title_other_version .title_name {
  color: rgb(23, 23, 23);
  font-size: 16px;
}
.apk_lore .apk_list.list_other_version .item_version .download {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  color: rgb(254, 100, 70);
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid rgb(254, 100, 70);
  padding: 8px 10px;
}
.apk_lore .apk_list.apkListSearch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.apk_lore .apk_list.apkListSearch li {
  width: 100%;
}
.apk_lore .apk_list.faq .accordion {
  margin-bottom: 16px;
}
.apk_lore .apk_list.faq .accordion.open {
  opacity: 0.8;
}

.head_lore.open .shadown {
  display: block;
}
.head_lore.open .menu_right {
  display: block;
}

.menu_right .language {
  display: none;
}

.adsBox {
  display: block !important;
}

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

.ads12 {
  min-height: 345px;
}
.ads12 .txt-ads {
  height: 20px;
}

.advertisement {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.advertisement span {
  width: 100%;
}
.advertisement .body_ads {
  border: 1px solid black;
  height: 312px;
  width: 208px;
}

.show_more_kids {
  margin: 0 auto;
  width: fit-content;
  border: 1px solid #3A640A;
  background-color: #3A640A;
  padding: 4px 6px;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
}
.show_more_kids a {
  color: white;
}

.apkInCategories {
  list-style: none;
  margin-left: 0;
}
.apkInCategories li {
  margin-bottom: 20px;
}
.apkInCategories .apk-card figure {
  aspect-ratio: 392/206;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.apkInCategories .apk-card figure img {
  width: 100%;
  height: 100%;
}

.footer_lore {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.04), -4px 4px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgb(235, 235, 235);
  background-color: white;
}
.footer_lore .logo_footer {
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0;
}
.footer_lore .logo_footer img {
  height: 42px;
}
.footer_lore .logo_footer .description_home {
  text-align: left;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgb(23, 23, 23);
}
.footer_lore .page_about {
  border-top: 1px solid rgb(235, 235, 235);
}
.footer_lore .page_about .page_title {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #171717;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgb(235, 235, 235);
}
.footer_lore .page_about .more {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_lore .page_about .more svg {
  width: 24px;
  height: 24px;
  transition: all 400ms ease;
}
.footer_lore .page_about .page_list {
  display: none;
}
.footer_lore .page_about .page_list li {
  list-style-type: none;
  padding: 6px 0;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.footer_lore .page_about .page_list li a {
  color: rgb(76, 76, 76);
}
.footer_lore .page_about .page_list .iconNavWrapper {
  display: none;
}
.footer_lore .page_about .page_menu.open .page_list, .footer_lore .page_about .page_game.open .page_list, .footer_lore .page_about .page_app.open .page_list {
  display: block;
}
.footer_lore .page_about .page_menu.open .more svg, .footer_lore .page_about .page_game.open .more svg, .footer_lore .page_about .page_app.open .more svg {
  transform: rotate(180deg);
}
.footer_lore .container.lore {
  display: flex;
  flex-direction: column;
}
.footer_lore .socials {
  padding: 12px 0;
}
.footer_lore .pf-Bot {
  width: fit-content;
  display: block;
  width: 100%;
}
.footer_lore .pf-Bot.open {
  display: none;
}
.footer_lore .coppy_right {
  width: 100%;
  margin-top: 12px;
  text-align: center;
  border-top: 1px solid rgb(235, 235, 235);
  padding: 12px;
}

.thumb_2 {
  display: none;
}

.single_apk .single_info {
  margin-bottom: 16px;
  display: flex;
}
.single_apk .single_info .singleApkIcon {
  margin-top: 0;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
  width: 72px;
  aspect-ratio: 72/72;
}
.single_apk .single_info .singleApkIcon img {
  border: 0;
  border-radius: 16px;
}
.single_apk .single_info .singleApkTitle {
  display: flex;
  flex-wrap: wrap;
  margin-left: 1rem;
  width: calc(100% - 72px);
}
.single_apk .single_info .singleApkTitle .h1Title {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: rgb(23, 23, 23);
  text-overflow: ellipsis;
  white-space: pre-wrap;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  width: 100%;
}
.single_apk .single_info .singleApkTitle span {
  width: 100%;
  display: flex;
  align-items: center;
}
.single_apk .content {
  margin-top: 16px;
}

legend h2 {
  font-size: 18px;
}

.removed_download {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: red;
}
.removed_download svg {
  margin-right: 8px;
  width: 24px;
  height: 24px;
}

.single_details fieldset {
  width: 100%;
  padding: 16px;
  border: 1px solid #3A640A;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
}
.single_details legend {
  background-color: white;
  width: fit-content;
  margin: 0 auto;
}
.single_details legend h2 {
  font-size: 16px;
}
.single_details p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: rgb(23, 23, 23);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.single_details p svg {
  height: 16px;
  width: 16px;
}
.single_details span {
  font-weight: normal;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  color: #e80c0c;
  white-space: nowrap;
}
.single_details div {
  text-align: center;
}
.single_details .details_left, .single_details .details_right {
  width: calc(50% - 6px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.single_details .chplay_detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single_details .chplay_detail img {
  width: 88.8px;
  height: 24px;
}
.single_details .details_title {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
.single_details .details_title h2 {
  font-weight: bold;
  text-wrap: nowrap;
  font-size: 1.25rem;
}
.single_details .details_title .left_title {
  width: 20%;
}
.single_details .details_title .right_title {
  width: 20%;
}

.single_download {
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid rgb(235, 235, 235);
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3A640A;
  color: white;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 14px;
  transition: box-shadow 0.25s ease 0s;
}
.single_download:hover {
  box-shadow: rgb(255, 87, 140) 0px 0px 19px;
}

.telegram {
  width: 100% !important;
  padding: 0 16px;
  margin: 16px auto;
  border-radius: 8px;
  background-color: #0096DA;
  border: 1px solid #0096DA;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: white;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 14px;
  transition: box-shadow 0.25s ease 0s;
}
.telegram svg {
  width: 24px;
  height: 24px;
}
.telegram:hover {
  box-shadow: rgb(111, 111, 111) 0px 0px 19px;
}

.telegram_des {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.telegram_des span {
  text-align: center;
  width: 100%;
}
.telegram_des a {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}

.tablayout {
  margin-top: 16px;
}
.tablayout .tabHead {
  margin-bottom: 1.5rem;
  display: flex;
}
.tablayout .tabHead .buttonTab {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: rgb(111, 111, 111);
  cursor: pointer;
  margin-right: 2.5rem;
  margin-top: 2rem;
}
.tablayout .tabHead .buttonTab.active {
  color: #3A640A;
  border-bottom: 1px solid #3A640A;
}
.tablayout .tabcontent {
  overflow: hidden;
}
.tablayout .tabcontent iframe {
  max-width: 400px;
  height: auto;
}
.tablayout .tabcontent .infoApp {
  padding: 16px;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 6px;
  display: flex;
  flex-wrap: wrap;
}
.tablayout .tabcontent .infoApp h2 {
  font-style: normal;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: rgb(23, 23, 23);
  margin-bottom: 1rem;
}
.tablayout .tabcontent .infoApp span {
  margin-bottom: 0.5rem;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  color: rgb(23, 23, 23);
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.rating-detail {
  padding: 16px;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 6px;
}

.form-comment {
  padding: 16px;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 2px 6px;
}

.box-stars {
  position: relative;
}
.box-stars svg {
  width: 50px;
  height: 50px;
}
.box-stars .score {
  z-index: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.box-stars .shadow_star {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: white;
}
.box-stars .over {
  z-index: 3;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.item-screenshoot {
  border-radius: 16px;
  overflow: hidden;
}

.profile {
  display: none;
  align-items: center;
  position: relative;
}
.profile .iconProfile {
  display: flex;
  align-items: center;
}
.profile .iconProfile svg {
  width: 24px;
  height: 24px;
}
.profile .loginInMenuMb {
  display: none;
  z-index: 15;
  height: fit-content;
  border-radius: 16px;
  border: 1px solid rgb(235, 235, 235);
  background-color: white;
  padding: 16px;
  position: absolute;
  bottom: 0;
  top: 24px;
  gap: 16px;
}
.profile .loginInMenuMb button, .profile .loginInMenuMb a {
  border: 1px solid rgb(235, 235, 235);
  border-radius: 16px;
  padding: 8px 10px !important;
  text-wrap: nowrap;
  background: linear-gradient(116.68deg, rgb(254, 145, 80) 4.86%, rgb(254, 133, 93) 23.19%, rgb(255, 87, 140) 77.21%);
  color: white;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 14px;
}
.profile .loginInMenuMb.open {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.blog_lore .thumb_blog {
  text-align: center;
  display: flex;
  justify-content: center;
}
.blog_lore .thumb_blog img {
  border: 1px solid rgb(235, 235, 235);
  border-radius: 16px;
  overflow: hidden;
  max-width: 100%;
}
.blog_lore .toc_blog {
  border: 1px solid rgb(235, 235, 235);
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
}
.blog_lore .toc_blog .abody {
  display: flex;
  flex-wrap: wrap;
}
.blog_lore .toc_blog .abody a {
  color: rgb(111, 111, 111);
  width: 100%;
}
.blog_lore .toc_blog .abody a span {
  color: rgb(23, 23, 23);
}

.page_download_1 .link_original .title {
  margin-bottom: 16px;
}
.page_download_1 .link_mod .title {
  margin-bottom: 16px;
}

.downloadBtn {
  border: 1px solid rgb(235, 235, 235);
  padding: 12px 10px;
  background-color: #F0F2F5;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.downloadBtn:hover {
  box-shadow: rgb(255, 87, 140) 0px 0px 19px;
}
.downloadBtn span {
  color: black;
}
.downloadBtn .nameDownload {
  display: flex;
  align-items: center;
  gap: 8px;
}
.downloadBtn .nameDownload svg {
  width: 24px;
  height: 24px;
}

.howto {
  background-color: orange;
  color: white;
}
.howto .nameDownload {
  color: white;
}

.accordion {
  border-radius: 6px;
  border: 1px solid #3A640A;
}
.accordion .ahead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: normal;
  padding: 12px 10px;
  height: fit-content;
  border-radius: 6px;
  background-color: white;
}
.accordion .ahead span {
  color: #3A640A;
}
.accordion .ahead .toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
.accordion .ahead .toggle svg {
  width: 24px;
  height: 24px;
  stroke: #3A640A;
}
.accordion .ahead .toggle svg path {
  fill: #3A640A;
  stroke: #3A640A;
}
.accordion .abody .item div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.accordion.open {
  border: 1px solid #3A640A;
}
.accordion.open .ahead {
  background-color: #3A640A;
}
.accordion.open .ahead span {
  color: white;
}
.accordion.open .ahead .toggle svg {
  stroke: white;
}
.accordion.open .ahead .toggle svg path {
  fill: white;
  stroke: white;
}

.link_download {
  cursor: pointer;
}

.swiper_screenshoots .swiper-slide {
  width: 70%;
}
.swiper_screenshoots .swiper-slide img {
  max-height: 400px;
}
.swiper_screenshoots .swiper-slide {
  display: flex;
  justify-content: flex-start;
}
.swiper_screenshoots .swiper-pagination-bullet {
  background: gray;
  opacity: 1;
}
.swiper_screenshoots .swiper-pagination-bullet-active {
  background: #fe31b1;
  border: 1px solid white;
}
.swiper_screenshoots .swiper-button-next, .swiper_screenshoots .swiper-button-prev {
  color: #fe31b1;
}

#showSlide {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  z-index: 99999;
}
#showSlide .swipper {
  max-width: 90%;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
}
#showSlide .btn_previous {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 4px;
  cursor: pointer;
}
#showSlide .btn_next {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 4px;
  cursor: pointer;
}
#showSlide .close {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 4px;
  cursor: pointer;
}

.swiper_screenshoots_show {
  max-width: 90%;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
}
.swiper_screenshoots_show .swiper-slide {
  display: flex;
  justify-content: center;
}
.swiper_screenshoots_show .swiper-pagination-bullet {
  background: gray;
  opacity: 1;
}
.swiper_screenshoots_show .swiper-pagination-bullet-active {
  background: #fe31b1;
  border: 1px solid white;
}
.swiper_screenshoots_show .swiper-button-next, .swiper_screenshoots_show .swiper-button-prev {
  color: #fe31b1;
}

.apk_lore .apk_body.game_kids .buttonTab {
  margin-top: 0;
}

.page_404 {
  background-color: white;
  padding-bottom: 250px;
}
.page_404 .body_404 {
  width: 100%;
  position: relative;
}
.page_404 .body_404 img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.page_404 .body_404 .back_home {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.page_404 .body_404 .back_home a {
  width: 200px;
  height: 50px;
  overflow: hidden;
  display: block;
}
.page_404 .body_404 .back_home img {
  transform: translateY(-39%);
  width: 100%;
  height: 400%;
}

.rankingList {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.rankingList .apk-icon {
  background: #8e3eff;
  border: 1px solid rgba(157, 88, 255, 0.1);
  position: relative;
}
.rankingList .apk-icon .info .title {
  color: white;
}
.rankingList .apk-icon .info .downloadText {
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15), 2px 4px 14px rgba(0, 0, 0, 0.24);
}
.rankingList .apk-icon .info .downloadText p {
  background: linear-gradient(90deg, #6890ff -5.95%, #59d3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.rankingList .apk-icon .rankNumber {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3A640A;
  width: 20px;
  height: 20px;
  border-radius: 12px;
  top: -10px;
}
.rankingList .apk-icon .rankNumber p {
  color: white;
  font-size: 10px;
}
.rankingList .ctAllRank {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 36px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.rankingList .ctAllRank .rank {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 140px;
  width: 33.3333%;
}
.rankingList .ctAllRank .rank:hover {
  opacity: 0.7;
}
.rankingList .ctAllRank .rank:hover .thumb img {
  transform: scale(1.05);
  transition: all 0.5s linear;
}
.rankingList .ctAllRank .rank .ctIcon {
  border: 3px solid #46eeda;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.rankingList .ctAllRank .rank .ctIcon .thumb {
  border-radius: 50%;
}
.rankingList .ctAllRank .rank .ctIcon .thumb img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.rankingList .ctAllRank .rank .ctIcon .textRank {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  color: white;
  background-color: #46eeda;
  margin: -7px 28px 1px;
  text-align: center;
  justify-content: center;
  align-items: center;
  align-self: center;
  display: flex;
  position: absolute;
}
.rankingList .ctAllRank .rank .title {
  font-size: 14px;
  font-weight: 600;
  color: #29303c;
  margin-top: 16px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.rankingList .ctAllRank .rank .modText {
  background: #30ad87;
  border-radius: 4px;
  max-width: 100%;
  padding: 2px 6px;
  font-weight: 500;
  font-size: 12px;
  color: white;
  margin-top: 8px;
}
.rankingList .ctAllRank .rank1 {
  margin: 0 10px;
  margin-bottom: 32px;
}
.rankingList .ctAllRank .rank1 svg {
  margin-bottom: 2px;
  margin-left: 1px;
}
.rankingList .ctAllRank .rank1 svg path {
  fill: #FF6969;
}
.rankingList .ctAllRank .rank1 .ctIcon {
  border: 3px solid #FF6969;
  width: 90px;
  height: 90px;
}
.rankingList .ctAllRank .rank1 .ctIcon .thumb img {
  width: 84px;
  height: 84px;
}
.rankingList .ctAllRank .rank1 .ctIcon .textRank {
  width: 20px;
  height: 20px;
  font-size: 12px;
  background-color: #FF6969;
  margin: -9px 36px 1px;
}
.rankingList .ctAllRank .rank3 .ctIcon {
  border: 3px solid #e10df4;
}
.rankingList .ctAllRank .rank3 .ctIcon .textRank {
  background-color: #e10df4;
}
.rankingList .apk-icon-wrp {
  width: 100%;
}
.rankingList .apk-icon-wrp .apk-icon {
  display: flex;
  background: #ffffff;
  border: 1px solid rgba(157, 88, 255, 0.15);
  border-radius: 12px;
  padding: 8px;
  justify-content: center;
}
.rankingList .apk-icon-wrp .apk-icon::after {
  content: "";
  display: block;
  clear: both;
}
.rankingList .apk-icon-wrp .apk-icon:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
.rankingList .apk-icon-wrp .apk-icon:hover .thumb img {
  transform: scale(1.05);
  transition: all 0.5s linear;
}
.rankingList .apk-icon-wrp .apk-icon .thumb {
  display: block;
  float: left;
  overflow: hidden;
  height: 57px;
  width: 57px;
  border-radius: 12px;
}
.rankingList .apk-icon-wrp .apk-icon .thumb img {
  display: block;
  width: 57px;
  height: 57px;
  border-radius: 6px;
}
.rankingList .apk-icon-wrp .apk-icon .info {
  max-width: calc(80% - 68px);
  width: calc(80% - 68px);
  margin-left: 11.5px;
  color: #000;
  position: relative;
}
.rankingList .apk-icon-wrp .apk-icon .info .title {
  font-weight: 700;
  font-size: 14px;
  color: #29303c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  width: 100%;
  margin-bottom: 8px;
}
.rankingList .apk-icon-wrp .apk-icon .info .ctVersionSize {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.rankingList .apk-icon-wrp .apk-icon .info .modText {
  background-color: #eee;
  border-radius: 4px;
  padding: 2px 6px;
  color: black;
  font-size: 12px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}
.rankingList .apk-icon-wrp .apk-icon .info .version svg {
  width: 13px;
  height: 11px;
}
.rankingList .apk-icon-wrp .apk-icon .info .ctDownloadText {
  justify-content: space-between;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}
.rankingList .apk-icon-wrp .apk-icon .info .ctDownloadText .ctVersion {
  display: flex;
  width: 100%;
}
.rankingList .apk-icon-wrp .apk-icon .info .downloadText {
  position: relative;
  font-weight: 600;
  font-size: 13px;
  color: white;
  padding: 10px;
  align-self: center;
  background: linear-gradient(90deg, #6890ff -5.95%, #9859ff 100%);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15), 2px 4px 14px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  margin-left: 3px;
  max-width: 50%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.rankingList .apk-icon-wrp .apk-icon .info .downloadText p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.rankingList .apk-icon-wrp .apk-icon.isMod {
  border: 1px solid rgba(254, 49, 177, 0.4);
}
.rankingList .apk-icon-wrp .apk-icon.isApk {
  border: 1px solid rgba(98, 191, 87, 0.15);
}

.mod_features {
  border: 1px solid #3A640A;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.mod_features legend {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .mod_features .telegram_des {
    max-width: 70%;
    margin: 0 auto;
  }
  .mod_features .telegram_des .telegram {
    border-radius: 4px;
  }
  .single_details {
    margin-top: 0;
  }
  .single_details .details_title {
    width: 100%;
  }
  .rankingList .apk-icon-wrp {
    width: calc(50% - 12px);
  }
  .advertisement {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }
  .advertisement span {
    width: 100%;
  }
  .advertisement .body_ads {
    border: 1px solid black;
    height: 231px;
    width: 900px;
  }
  .tablayout .tabcontent h2 {
    display: flex;
    justify-content: center;
  }
  .tablayout .tabcontent iframe {
    max-width: 700px;
    height: 350px;
  }
  .apk_lore .apk_list.list_apk_choice {
    min-height: 230px;
  }
  .apk_lore .apk_list.list_apk_choice .swiper-slide {
    width: calc(50% - 12px);
    margin-right: 24px;
  }
  .apk_lore .apk_list.list_apk_choice .swiper-slide img {
    max-height: 400px;
  }
  .apk_lore .apk_list.list_apk_best {
    min-height: 205px;
  }
  .apk_lore .apk_list.list_apk_best .swiper-slide {
    width: calc(16.666666% - 15px);
    margin-right: 18px;
  }
  .apk_lore .apk_list.list_apk_best .swiper-slide img {
    max-height: 400px;
  }
  .apk_lore .apk_list.list_apk_best .apk-icon .thumb {
    width: 90px;
    height: 90px;
  }
  .apk_lore .apk_list.list_category {
    min-height: 225px;
  }
  .apk_lore .apk_list.list_category a .cTitle {
    font-size: 16px;
  }
  .apk_lore .apk_list.list_category .swiper-slide {
    margin-top: 24px !important;
    max-width: 25%;
  }
  .apk_lore .apk_list.list_blog .list_blog_archive {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .apk_lore .apk_list.list_blog .list_blog_archive .item_list_blog {
    width: calc(50% - 6px);
    margin-bottom: 1.5rem;
  }
  .apk_lore .apk_list.list_blog .list_blog_recommend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .apk_lore .apk_list.list_blog .list_blog_recommend .swiper-slide {
    width: calc(50% - 6px);
    margin-bottom: 1.5rem;
  }
  .apk_lore .apk_list.list_app .list_apk_app .swiper-wrapper, .apk_lore .apk_list.list_app .list_apk_game .swiper-wrapper {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .apk_lore .apk_list.list_app .list_apk_app .swiper-slide, .apk_lore .apk_list.list_app .list_apk_game .swiper-slide {
    margin-top: 0 !important;
    width: calc(33.333333% - 16px);
  }
  .apk_lore .apk_list.list_app .list_apk_app .swiper-slide .apk-icon, .apk_lore .apk_list.list_app .list_apk_game .swiper-slide .apk-icon {
    padding: 12px;
  }
  .apk_lore .apk_list.list_app .swiper_apk_card_2 .swiper-wrapper {
    gap: 24px;
  }
  .apk_lore .apk_list.list_app .swiper_apk_card_2 .swiper-slide {
    width: calc(16.666666% - 21px);
  }
  .apk_lore .apk_list.list_app .apk-icon .is_mod, .apk_lore .apk_list.list_app .apk-icon .is_apk {
    left: 41px;
  }
  .apk_lore .apk_list.list_app .swiper_apk_card .swiper-slide {
    margin-top: 12px !important;
    width: 20%;
  }
  .apk_lore .apk_list.list_app .swiper_apk_card .apk-card {
    margin-right: 12px;
  }
  .apk_lore .apk_list.apkListSearch {
    gap: 24px;
  }
  .apk_lore .apk_list.apkListSearch li {
    width: calc(50% - 12px);
  }
  .links {
    display: flex;
  }
  .links .downloadBtn {
    width: 70%;
  }
  .content-game {
    margin: 0;
  }
  .blockRelated {
    padding: 24px;
    border-radius: 12px;
  }
  .list-game {
    gap: 24px;
  }
  .list-game .item-game {
    width: calc(50% - 12px);
    border-radius: 12px;
  }
  .sbHomeChoices {
    padding: 0 0;
  }
  .accordion .abody {
    padding: 10px 25px;
  }
  .entry-mod .accordion {
    display: inline-block;
  }
  .sbhTitle {
    font-size: 1.5rem;
  }
  .entry-faq .accordion .ahead {
    padding: 16px 0px;
  }
  .apk-slider::-webkit-scrollbar {
    height: 12px;
  }
  .apk-slider::-webkit-scrollbar-track {
    background-color: #eee;
  }
  .apk-slider::-webkit-scrollbar-thumb {
    background-color: #aaa;
  }
  .apk-slider .ss-item {
    min-height: 165px;
    max-height: 200px;
    max-width: none;
  }
  #page-header .ph-left {
    padding: 0 16px;
  }
  .owl-carousel.slideapk .owl-dots {
    margin-bottom: 16px;
    padding-top: 6px;
  }
  .sbheader,
  .box-space {
    margin-bottom: 16px;
  }
  .btn-discord {
    font-size: 1.125rem;
    width: 521px;
  }
  .btn-discord .icon {
    margin-right: 16px;
  }
  .btn-discord:visited {
    color: #fff;
  }
  .box-cross {
    position: relative;
    margin-top: 30px;
    margin: 0 auto;
  }
  .box-cross .bc-title {
    background-color: #fff;
    position: absolute;
    left: 15px;
    top: 0;
    transform: translateY(-50%);
    font-size: 20px;
  }
  .mod-accordion .ahead {
    padding: 12px 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 {
    overflow: hidden;
  }
  .blog .info .description {
    height: 88px;
    overflow: hidden;
  }
  .sort-controls {
    justify-content: flex-start;
  }
  .sort-controls li a {
    min-width: 138px;
    box-sizing: border-box;
  }
  #comments .form-comment textarea {
    height: 170px;
  }
  #comments .holder-comments .lch-body .wraploadmore {
    margin-left: 75px;
  }
  #comments .rating-detail .rt-l {
    width: 100%;
    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;
  }
  .youtube {
    padding-top: 42%;
  }
  #page-footer .pf-Top .pf-menu li {
    margin: 0 32px;
  }
  #page-footer .pf-Top {
    padding: 30px 10px 17px 10px;
  }
  #page-footer .pf-Top .pf-logo {
    margin-bottom: 8px;
  }
  #page-footer .pf-Top .pf-logo .logo {
    display: block;
  }
  #page-footer .pf-Top .pf-logo .logo img {
    display: block;
    margin: 0 auto;
  }
  #page-footer .pf-Top .pf-logo .sitename {
    margin: 16px auto;
  }
  #page-footer .pf-Top .pf-menu {
    margin: 20px 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #page-footer .pf-Top .pf-menu .divide {
    width: 2px;
    height: 14px;
    background: #ccd0d9;
  }
  #page-footer .pf-Top .pf-menu .divide:last-child {
    display: none;
  }
  #page-footer .pf-Top .pf-menu li {
    margin: 0 16px;
  }
  #page-footer .pf-Top .pf-menu li a {
    font-weight: 600;
    font-size: 16px;
    color: #3A640A;
  }
  .apkInCategories {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .apkInCategories li {
    width: calc(50% - 12px);
    margin-bottom: 24px;
  }
  .thumbSingleApk {
    display: flex;
    justify-content: center;
  }
  .pcCenter {
    display: flex;
    justify-content: center;
  }
  .homeChoicesTitle {
    justify-content: flex-start;
  }
  .row {
    gap: 16px;
  }
  .row li {
    width: calc(50% - 8px);
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 992px) {
  .mod_features .telegram_des {
    max-width: 60%;
    margin: 0 auto;
  }
  .mod_features .telegram_des .telegram {
    border-radius: 4px;
  }
  .pcCenter {
    display: none;
  }
  .rankingList .apk-icon-wrp {
    width: calc(33.333333% - 16px);
  }
  .single_details {
    order: 4;
    width: 100%;
    position: relative;
    justify-content: center;
    padding-bottom: 16px;
  }
  .single_details .details_title {
    top: -14px;
  }
  .single_details span {
    font-size: 14px !important;
  }
  .single_details fieldset {
    gap: 16px;
  }
  .single_details .details_left, .single_details .details_right {
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }
  .single_details .chplay_detail {
    margin: 0;
  }
  .single_details p {
    font-size: 16px;
  }
  .profile {
    background-color: red;
    display: flex;
    align-items: center;
    position: relative;
    min-width: 32px;
    width: 32px;
    height: 32px;
  }
  .profile .iconProfile {
    display: flex;
    align-items: center;
  }
  .profile .iconProfile svg {
    width: 30px;
    height: 30px;
  }
  .profile .loginInMenuMb {
    display: none;
    z-index: 15;
    height: fit-content;
    border-radius: 16px;
    border: 1px solid rgb(235, 235, 235);
    background-color: white;
    padding: 16px;
    position: absolute;
    bottom: 0;
    top: 24px;
    gap: 16px;
  }
  .profile .loginInMenuMb button, .profile .loginInMenuMb a {
    border: 1px solid rgb(235, 235, 235);
    border-radius: 16px;
    padding: 8px 10px !important;
    text-wrap: nowrap;
    background: linear-gradient(116.68deg, rgb(254, 145, 80) 4.86%, rgb(254, 133, 93) 23.19%, rgb(255, 87, 140) 77.21%);
    color: white;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 14px;
  }
  .profile .loginInMenuMb.open {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .profile .login {
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 16;
    min-width: 30px;
  }
  .profile .login svg {
    width: 30px;
    height: 30px;
  }
  .profile .login a {
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .profile .login .dd-content {
    left: 0;
  }
  .thumb_2 {
    display: block;
    width: 100%;
  }
  .thumb_2 .thumbnail_2 {
    width: 100%;
    height: 200px;
    max-height: 200px;
    aspect-ratio: 1.82;
    object-fit: cover;
  }
  .box-stars svg {
    width: 40px;
    height: 40px;
  }
  .box-stars .shadow_star {
    background-color: white;
  }
  .single_apk {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .single_apk .single_info {
    order: 1;
    width: calc(50% - 10px);
  }
  .single_apk .single_info .singleApkIcon {
    width: 104px;
    height: 104px;
  }
  .single_apk .single_info .singleApkTitle {
    width: calc(100% - 104px);
  }
  .single_apk .single_info .singleApkTitle .h1Title {
    font-size: 20px;
  }
  .single_apk .telegram_des span {
    display: none;
  }
  .single_apk .download_link {
    width: calc(50% - 10px);
    order: 2;
  }
  .single_apk .download_link .single_download {
    margin-top: 0;
    height: 48px;
    margin-bottom: 16px;
  }
  .single_apk .download_link .telegram {
    margin: 0;
  }
  .single_apk .download_link .telegram_des {
    margin-bottom: 0;
  }
  .single_apk .download_link .telegram_des a {
    margin-bottom: 0 !important;
  }
  .single_apk .ads {
    order: 3;
    width: 100%;
  }
  .single_apk .content {
    text-align: center;
    width: 100%;
    order: 5;
  }
  .apk_lore .apk_list.list_apk_choice {
    min-height: 175px;
  }
  .apk_lore .apk_list.list_apk_choice .swiper-slide {
    width: calc(33.333333% - 16px);
    margin-right: 24px;
  }
  .apk_lore .apk_list.list_apk_choice .swiper-slide img {
    max-height: 400px;
  }
  .apk_lore .apk_list.list_apk_best {
    min-height: 210px;
  }
  .apk_lore .apk_list.list_apk_best .swiper-slide {
    width: calc(12.5% - 14px);
    margin-right: 16px;
  }
  .apk_lore .apk_list.list_apk_best .swiper-slide img {
    max-height: 400px;
  }
  .apk_lore .apk_list.list_apk_best .apk-icon .thumb {
    width: 105px;
    height: 105px;
  }
  .apk_lore .apk_list.list_blog .list_blog_archive {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .apk_lore .apk_list.list_blog .list_blog_archive .item_list_blog {
    width: calc(33.333333% - 8px);
    margin-bottom: 1.5rem;
  }
  .apk_lore .apk_list.list_blog .list_blog_recommend {
    gap: 24px;
  }
  .apk_lore .apk_list.list_blog .list_blog_recommend .swiper-slide {
    width: calc(33.333333% - 16px);
    margin-bottom: 1.5rem;
  }
  .apk_lore .apk_list.list_app .list_apk_app .swiper-wrapper, .apk_lore .apk_list.list_app .list_apk_game .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: auto;
    padding-bottom: 6px;
  }
  .apk_lore .apk_list.list_app .list_apk_app .swiper-slide, .apk_lore .apk_list.list_app .list_apk_game .swiper-slide {
    width: calc(25% - 18px);
  }
  .apk_lore .apk_list.list_app .list_apk_app .swiper-slide .apk-icon, .apk_lore .apk_list.list_app .list_apk_game .swiper-slide .apk-icon {
    padding: 12px;
  }
  .apk_lore .apk_list.list_app .swiper_apk_card_2 .swiper-wrapper {
    gap: 16px;
  }
  .apk_lore .apk_list.list_app .swiper_apk_card_2 .swiper-slide {
    width: calc(12.5% - 14px);
  }
  .apk_lore .apk_list.list_app .swiper_apk_card .swiper-slide {
    margin-top: 12px !important;
    width: 12.5%;
  }
  .apk_lore .apk_list.list_app .swiper_apk_card .apk-card {
    margin-right: 12px;
  }
  .apk_lore .apk_list.apkListSearch {
    gap: 24px;
  }
  .apk_lore .apk_list.apkListSearch li {
    width: calc(33.333333% - 16px);
  }
  .apk_lore .apk_list.list_category {
    min-height: 240px;
  }
  .apk_lore .apk_list.list_category .swiper-slide {
    max-width: 16.666666%;
  }
  .footer_lore {
    margin-bottom: 0;
  }
  .footer_lore .container.lore {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
  }
  .footer_lore .logo_footer {
    width: 100%;
  }
  .footer_lore .description_home {
    width: 50%;
  }
  .footer_lore .page_about {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .footer_lore .page_about .page_list {
    display: block;
    margin-left: 0;
  }
  .footer_lore .page_about .more {
    display: none;
  }
  .footer_lore .pf-Bot {
    width: fit-content;
    display: none;
  }
  .footer_lore .pf-Bot.open {
    display: block;
  }
  .footer_lore .pf-Bot .container {
    padding: 0;
  }
  .footer_lore .pf-Bot ul {
    margin-left: 0;
  }
  .menu_left {
    border-bottom: 0;
    box-shadow: none;
  }
  .apk_lore.best_app {
    border-radius: 24px;
  }
  .apk_lore .apk_list.list_blog .blog .info .content {
    font-size: 12px;
  }
  header {
    background-color: white;
    border-bottom: 1px solid rgb(235, 235, 235);
    z-index: 15;
  }
  .head_lore {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .search.desktop {
    display: flex;
    width: 50%;
  }
  .search.desktop #suggestions {
    background-color: transparent;
  }
  .search.desktop #suggestions .suggestions-holder {
    overflow: hidden;
    padding: 12px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .search.desktop #suggestions .suggestions-holder p {
    background-color: white;
  }
  .menu_left {
    width: 50%;
    position: static;
    justify-content: flex-start;
  }
  .menu_left .menu_toggle {
    display: none;
  }
  .menu_left .language {
    display: none;
  }
  .menu_right .language {
    display: block;
  }
  header {
    position: relative;
  }
  #search-holder {
    padding: 0;
    margin: 0;
  }
  #search-holder.search {
    display: none;
  }
  .menu_right {
    position: inherit;
    padding: 0px;
    border: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: auto;
  }
  .menu_right .menu {
    flex-direction: row;
  }
  .menu_right .close_toggle {
    display: none;
  }
  #search-holder {
    position: static;
  }
  #page-header #menu-holder .menu li:nth-child(4) {
    position: static;
    top: 0;
  }
  #page-header #menu-holder .menu li:nth-child(4) a {
    height: 72px;
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    border: 0;
    box-shadow: none;
    width: 72px;
  }
  #page-header #menu-holder .menu li:nth-child(4) span {
    position: none;
    font-size: 16px;
  }
  .list-game {
    gap: 12px;
  }
  .list-game .item-game {
    width: calc(25% - 9px);
  }
  .list-game .cardGame .content figure {
    aspect-ratio: 235/135;
  }
  .list-game .cardGame .content figure img {
    max-width: 100%;
    height: 100%;
  }
  .newGameWrp {
    width: 68%;
    aspect-ratio: 806/426;
  }
  html {
    position: relative;
  }
  .title {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .version,
  .cate {
    font-size: 12px;
  }
  .language {
    margin-right: 60px;
  }
  .language .dd-content {
    color: #3A640A;
    padding: 5px 12px;
    box-shadow: 0 0 5px rgb(0, 0, 0);
  }
  .language span {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.005em;
    color: #ffffff;
  }
  .language .dd-toggle:hover span {
    color: #000;
    transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #page-header {
    height: 72px;
  }
  #page-header .container {
    position: relative;
  }
  #page-header .ph-left {
    display: block;
    float: left;
    height: 72px;
    padding: 0;
  }
  #page-header .ph-left .nmi-menu-toggle {
    display: none;
  }
  #page-header .ph-left .nmi-search-toggle {
    position: absolute;
    right: 16px;
    top: 22px;
    z-index: 6;
  }
  #page-header .ph-left .logo {
    height: 100%;
    display: flex;
    align-items: center;
  }
  #page-header .ph-left .logo img {
    height: 32px;
    width: 208px;
  }
  #page-header .ph-right {
    float: right;
    margin-right: 0;
    height: 72px;
  }
  #page-header #menu-holder {
    height: 100%;
    position: static;
    display: flex;
    align-items: center;
    right: inherit;
    top: inherit;
    bottom: inherit;
    background-color: transparent;
    transform: translateX(0);
    width: inherit;
    max-width: inherit;
    overflow: inherit;
    z-index: 5;
  }
  #page-header #menu-holder .menu-content {
    display: flex;
    padding-top: 0;
  }
  #page-header #menu-holder .language {
    position: static;
    display: flex;
    align-items: center;
  }
  #page-header #menu-holder .language .dd-toggle::after {
    border-top-color: #fff;
  }
  #page-header #menu-holder .nmi-menu-toggle {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  #page-header #menu-holder .menu {
    flex-wrap: nowrap;
    margin: 0;
    margin-right: 64px;
  }
  #page-header #menu-holder .menu li {
    line-height: 72px;
    padding: 0;
    margin-right: 28px;
    width: fit-content;
    margin-left: 0;
  }
  #page-header #menu-holder .menu li a {
    height: 72px;
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
  }
  #page-header #menu-holder .menu li a span {
    position: inherit;
    display: block;
    height: 72px;
    padding: 0;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
  }
  #page-header #menu-holder .menu li a span svg {
    display: none;
  }
  #page-header #menu-holder .menu li a:hover span {
    color: #000;
    opacity: 0.7;
    transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #page-header #menu-holder .menu li:first-child {
    width: fit-content;
    margin-bottom: 0;
  }
  #page-header #menu-holder .menu li:first-child span {
    padding-top: 0;
  }
  #page-header #menu-holder .menu li:last-child {
    margin-left: 0;
    margin-top: 0;
    justify-content: center;
  }
  #page-header #menu-holder .menu li:last-child span {
    padding-left: 0;
  }
  #page-header #menu-holder .menu::after {
    display: none;
  }
  .wrapcontent > * {
    word-break: inherit;
  }
  .page-description .page-title {
    padding: 12px;
  }
  .sbHomeChoices .sbheader .textCenter {
    text-align: start;
  }
  .apk-icon .thumb {
    min-width: 60px;
    min-height: 60px;
  }
  .bsc-list {
    max-height: 150px;
  }
  .row {
    margin: 0 -16px;
  }
  .row li {
    width: 33.3333%;
    padding: 0 16px;
    margin-bottom: 24px;
  }
  .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;
  }
  .youtube {
    padding-top: 35%;
  }
  #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;
  }
  .linkGoogleWrp a img {
    width: 200px;
  }
  .iconInfo .version {
    font-size: 14px;
  }
  .iconInfo .cate {
    font-size: 14px;
  }
  .apkInCategories {
    display: flex;
    flex-wrap: wrap;
  }
  .apkInCategories li {
    width: calc(33.333333% - 16px);
  }
  .table-res {
    padding: 34px 72px;
    max-width: 600px;
    margin: 0 auto;
  }
  .apk-card .verCate .divide {
    margin: 0 12px;
  }
  .links span {
    left: 60%;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  .links .downloadBtn {
    width: 60%;
  }
  .page-form-space {
    background: rgba(51, 51, 51, 0.5);
  }
  .page-form-space .navigation {
    margin-bottom: 20px;
    height: 49px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.02), -2px 2px 4px rgba(0, 0, 0, 0.08);
  }
  .fef-wrap {
    width: 600px;
    height: fit-content;
    margin-top: 50px;
  }
  .fef-title {
    color: #fff;
  }
  .signupModal .fef-wrap {
    height: 850px;
  }
  .d-none-pc {
    display: none;
  }
  .d-none-mb {
    display: block;
    float: right;
  }
  .iconNavWrapper,
  .iconNavSvg {
    display: none;
  }
  #page-header #menu-holder .menu li a span svg {
    display: none;
  }
  .page-form-space .navigation .btn-close {
    left: auto;
    right: 0;
  }
  .page-form-space .fef-wrap {
    overflow: hidden;
  }
  .page-form-space .modalFooterBot {
    margin-bottom: 0;
  }
  .cmList.cmlAlphabet, .cmList.cmlAlphabetUp {
    max-width: 910px;
  }
  .cmList.cmlSpecial {
    max-width: 1050px;
  }
  .cmList li {
    width: 70px;
    height: 108px;
  }
  .cmList li .normal {
    font-size: 1rem;
  }
  .cmList li .cssfont {
    margin-top: 16px;
    font-size: 2.1875rem;
  }
  .fonts {
    margin-left: -6px;
    margin-right: -6px;
  }
  .fonts li {
    width: 33.3333%;
    padding: 0 6px;
  }
}
.pageOnlyIframe {
  position: fixed;
  width: 100%;
  height: 100%;
}

.postDescription {
  color: #555;
  margin-bottom: 2rem;
  font-size: 14px;
  font-weight: 400;
  padding-left: 12px;
  padding-right: 12px;
}

.btn-back-home {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  margin-bottom: 2rem;
  width: fit-content;
}

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