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

html {
  font-family: "Open Sans", Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  scroll-behavior: smooth;
  color: #000000;
}

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

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

a:visited {
  color: inherit;
}

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

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

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

.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 {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.box-dropdown .dd-toggle::after {
  content: "";
  display: inline-block;
  transform: rotate(45deg) translateY(-8px) translateX(5px);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  height: 6px;
  width: 6px;
}
.box-dropdown .dd-content {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 120px;
  background-color: #fff;
  box-shadow: 0 0 5px rgb(0, 0, 0);
  border-radius: 5px;
  display: none;
}

.container {
  max-width: 950px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

#page-header {
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 9;
}
#page-header #search-holder,
#page-header #menu-holder {
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10;
  box-sizing: border-box;
  overflow-y: auto;
}
#page-header #search-holder {
  right: 0;
  width: 100%;
  transform: translateX(105%);
}
#page-header #search-holder.open {
  transform: translateX(0);
  transition: transform 0.3s ease;
}
#page-header #search-holder .form-search {
  position: relative;
  max-width: 760px;
  margin: 50px 10px 0 10px;
  background-color: #fff;
  border-radius: 50px;
}
#page-header #search-holder .form-search input,
#page-header #search-holder .form-search button {
  border: none;
}
#page-header #search-holder .form-search #suggest-text,
#page-header #search-holder .form-search input {
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  height: 35px;
  line-height: 35px;
  background-color: transparent;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}
#page-header #search-holder .form-search input {
  position: relative;
  z-index: 2;
}
#page-header #search-holder .form-search button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0 9px;
  background-color: #56eda8;
  z-index: 3;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 50px;
}
#page-header #search-holder .form-search button svg {
  height: 18px;
  margin-top: 1px;
}
#page-header #search-holder .form-search button svg path {
  fill: #000;
}
#page-header #search-holder .form-search #suggest-text {
  position: absolute;
  z-index: 1;
  color: #aaa;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#page-header #search-holder .form-search #suggestions {
  position: absolute;
  top: 31px;
  left: 0;
  color: #fff;
}
#page-header #search-holder .form-search #suggestions .suggestions-holder {
  padding: 8px 20px;
}
#page-header #search-holder .form-search #suggestions .suggestions-holder p {
  padding: 8px 0;
  font-weight: normal;
}
#page-header #search-holder .form-search #suggestions .suggestions-holder p strong {
  color: #1A73D6;
  font-weight: normal;
}
#page-header #search-holder .form-search #suggestions .suggestions-holder p.active, #page-header #search-holder .form-search #suggestions .suggestions-holder p:hover {
  cursor: pointer;
  color: #1A73D6;
}
#page-header #search-holder .form-search #suggest-text,
#page-header #search-holder .form-search #suggestions {
  display: none;
}
#page-header #search-holder .form-search.searching #suggest-text,
#page-header #search-holder .form-search.searching #suggestions {
  display: block;
}
#page-header #menu-holder {
  position: fixed;
  top: 45px;
  left: 0;
  height: 200px;
  width: 200px;
  transform: translateX(-200px);
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-bottom-right-radius: 5px;
}
#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 {
  list-style: none;
  margin-left: 20px;
  margin-top: 24px;
  margin-bottom: 10px;
}
#page-header #menu-holder .menu li {
  padding: 10px 0;
}
#page-header #menu-holder .menu li a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#page-header #menu-holder .menu li a img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
#page-header #menu-holder .login {
  display: none;
}
#page-header .ph-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  line-height: 1em;
  padding: 0 10px;
}
#page-header .ph-left .logo {
  display: block;
}
#page-header .ph-left .logo img {
  display: block;
  height: 30px;
}
#page-header .ph-left .nmi-menu-toggle {
  display: flex;
  width: 30px;
  height: 30px;
}
#page-header .ph-left .nmi-search-toggle svg path {
  fill: #000;
}

.hide {
  display: none !important;
}

#page-body {
  padding-top: 55px;
  min-height: 80vh;
  background-color: #56eda8;
  padding-bottom: 25px;
}

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

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

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

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

.apk-icon {
  display: block;
  border-radius: 5px;
}
.apk-icon::after {
  content: "";
  display: block;
  clear: both;
}
.apk-icon:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
.apk-icon:hover .thumb img {
  transform: scale(1.05);
  transition: all 0.5s linear;
}
.apk-icon .thumb {
  display: block;
  float: left;
  overflow: hidden;
  height: 100px;
}
.apk-icon .thumb img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 5px;
}
.apk-icon .info {
  margin-left: 116px;
  color: #000;
}
.apk-icon .info .title {
  font-weight: bold;
  margin-bottom: 10px;
}
.apk-icon .info .author, .apk-icon .info .mod, .apk-icon .info .version {
  margin-bottom: 10px;
  font-size: 0.875;
}
.apk-icon .info .version svg {
  width: 13px;
  height: 11px;
}

.secbox .sbheader {
  margin-bottom: 10px;
}
.secbox .sbheader .sbhTitle {
  color: #2b2b2b;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

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

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

.content {
  margin-top: 20px;
  font-size: 16px;
}

.wrapcontent {
  color: #2b2b2b;
  white-space: pre-line;
  line-height: 1.5;
}
.wrapcontent > * {
  margin-bottom: 10px;
}
.wrapcontent p {
  word-break: inherit;
  margin: 0 0 1rem;
}
.wrapcontent h1, .wrapcontent h2, .wrapcontent h3 {
  margin: 0 0 0.35em;
}
.wrapcontent h1 {
  font-size: 35px;
}
.wrapcontent h2 {
  font-size: 26px;
}
.wrapcontent h3 {
  font-size: 18px;
}
.wrapcontent ol,
.wrapcontent ul {
  margin-left: 20px;
  line-height: 1;
}
.wrapcontent ol li,
.wrapcontent ul li {
  line-height: 1.2;
  margin-bottom: 0px;
}
.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);
}

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

.listGame {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
}

.list2pc1mb .cardGameWrp:last-child {
  display: none;
}

.choiceItemWrp {
  width: 16.66667%;
  padding-left: 6px;
  padding-right: 6px;
}

.choiceItem {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
  height: 120px;
  border-radius: 20px;
}

.cardGameWrp {
  list-style-type: none;
  padding-left: 6px;
  padding-right: 6px;
  width: 100%;
}

.cardGame {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  height: 0px;
  display: flex;
  margin-bottom: 16px;
}
.cardGame .content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: #fff;
  padding-top: 0px;
}
.cardGame figure {
  width: 100%;
  height: 80%;
  border-radius: 10px;
  padding: 4px;
}
.cardGame figure img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.cardGame .title {
  font-size: 15px;
  height: 20%;
  display: flex;
  align-items: center;
  color: #2b2b2b;
  text-align: center;
}
.cardGame:active {
  animation: tada 0.5s linear both;
}

.listCategory {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 5px;
}
.listCategory .cate-item {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: 28px;
  padding: 0px 12px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.16);
  margin-right: 12px;
  border-radius: 3px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.tableInfo tr td:nth-child(2) {
  padding-left: 12px;
}

.sec-titmeTable {
  margin-top: 30px;
}
.sec-titmeTable .title {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.timeTableBlock {
  font-size: 14px;
  color: #212529;
  border-collapse: collapse;
}
.timeTableBlock tr {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}
.timeTableBlock tr:nth-child(even) {
  background-color: #E7E9EB;
}
.timeTableBlock tr:hover {
  background-color: #ddd;
}
.timeTableBlock td {
  width: 50%;
  line-height: 18px;
  padding: 4px 12px;
  border: 1px solid #ddd;
}

.thumbnail {
  display: flex;
  justify-content: center;
}
.thumbnail img {
  max-width: 600px;
  border-radius: 12px;
}

#adminBar {
  position: fixed;
  left: 0;
  bottom: 0;
  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;
}

#page-footer {
  text-align: center;
  background-color: #0bcbff;
}
#page-footer a {
  color: #ffffff;
  font-size: 16px;
}
#page-footer ul {
  list-style: none;
  margin-left: 0;
}
#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-logo .socials li {
  display: inline-block;
  margin: 0 8px;
}
#page-footer .pf-Top .pf-menu li {
  display: inline-block;
  margin: 8px 10px;
}
#page-footer .pf-Top .pf-menu li a {
  color: #000;
}
#page-footer .pf-Top .pf-menu li a:hover {
  color: #1A73D6;
}
#page-footer .pf-Top .pf-menu li a:visited {
  color: #000;
}
#page-footer .pf-Bot {
  color: #fff;
  padding: 10px;
}
#page-footer .pf-Bot .copyright {
  font-size: 0.856rem;
}
#page-footer .pf-Bot .copyright .siteName {
  text-transform: uppercase;
}
#page-footer .pf-Bot .pf-Bottom li a:hover {
  color: #ff7741;
}
#page-footer .pf-Bot .listLangs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 16px;
}
#page-footer .pf-Bot .listLangs .langItem {
  display: flex;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: bold;
}
#page-footer .pf-Bot .listLangs .langItem img {
  margin-right: 5px;
}
#page-footer .pf-Bot .listLangs .langItem:hover {
  color: #ff7741;
}
#page-footer .logoWrp {
  display: flex;
  justify-content: center;
}
#page-footer .logoWrp a {
  display: block;
}
#page-footer .logoWrp a img {
  width: 500px;
  height: auto;
}
#page-footer .about {
  color: #fff;
  font-weight: bold;
}
#page-footer .about p {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 15px;
}

.pagination {
  margin-top: 30px;
}
.pagination ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}
.pagination ul li {
  width: 30px;
  height: 30px;
  margin-left: 4px;
  margin-right: 4px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.pagination ul li:hover {
  background-color: orange;
}
.pagination ul li:hover a {
  color: #fff;
}
.pagination ul li:hover a svg polygon {
  fill: #fff;
}
.pagination ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.pagination ul li a svg {
  width: 12px;
  height: 12px;
}
.pagination ul li a svg polygon {
  fill: #fff;
}
.pagination ul li.active {
  background-color: orange;
}
.pagination ul li.active a {
  color: #fff;
}
.pagination ul li span {
  color: #fff;
}
.pagination .pageIconLeft {
  transform: rotate(180deg);
}

.listLink {
  display: flex;
  flex-direction: column;
}

.anchor {
  display: block;
  height: 92px;
  margin-top: -92px;
  visibility: hidden;
}

.breadcumb {
  padding-top: 5px;
}
.breadcumb ul {
  list-style: none;
  margin: 0;
  white-space: nowrap;
  padding-bottom: 12px;
  overflow-x: auto;
}
.breadcumb ul li {
  display: inline-block;
  padding-right: 8px;
}
.breadcumb ul li::after,
.breadcumb ul li a,
.breadcumb ul li span {
  vertical-align: middle;
}
.breadcumb ul li::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transform: rotate(-45deg);
}
.breadcumb ul li:last-child::after {
  display: none;
}
.breadcumb ul li a,
.breadcumb ul li span {
  color: #707070;
  font-size: 1rem;
}
.breadcumb ul li a:hover {
  color: #1A73D6;
}

.sort-controls {
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}
.sort-controls li {
  margin-bottom: 16px;
  margin-right: 5px;
}
.sort-controls li a {
  display: block;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid #707070;
  text-transform: capitalize;
  text-align: center;
  color: #000;
  transition: background 0.5s ease;
  white-space: nowrap;
  overflow: hidden;
}
.sort-controls li:hover a, .sort-controls li.active a {
  background: #000;
  border-color: #000;
  color: #fff;
  transition: background 0.5s ease;
}

.page-title {
  font-size: 20px;
  font-weight: bold;
  color: #2b2b2b;
}

.page-author {
  color: #707070;
}

.page-description {
  margin-bottom: 10px;
}

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

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

.accordion {
  border-radius: 5px;
  overflow: hidden;
}
.accordion .ahead {
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  font-weight: bold;
  background-color: #EDEDED;
}
.accordion .ahead svg path {
  fill: #000;
}
.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.open {
  border: 1px solid #EDEDED;
}
.accordion.open .abody {
  display: block;
}
.accordion.open .toggle {
  transform: rotate(0deg);
}
.accordion .abody {
  display: none;
  padding: 10px;
  border-radius: 0 0 5px 5px;
}
.accordion .abody a {
  padding: 8px 0;
  color: #000;
  font-style: italic;
}
.accordion .abody a:hover {
  color: #1A73D6;
}
.accordion .abody a.lvl-hh {
  margin-left: 20px;
}
.accordion .abody a.lvl-hhh {
  margin-left: 40px;
}
.accordion .abody a.lvl-hhhh {
  margin-left: 60px;
}
.accordion .abody a .icon {
  margin-right: 8px;
}
.accordion .abody ul,
.accordion .abody ol {
  margin-left: 25px;
}
.accordion .abody ul li,
.accordion .abody ol li {
  margin-bottom: 8px;
}

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

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

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

.thumbWrp {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.thumbWrp img {
  height: auto;
  max-width: 100%;
}

.player-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.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 .form-comment {
  margin-bottom: 20px;
}
#comments .form-comment label {
  display: block;
  margin-bottom: 5px;
}
#comments .form-comment label .mark {
  color: #CC0000;
  font-weight: normal;
}
#comments .form-comment textarea {
  width: 100%;
  padding: 10px;
  display: block;
  box-sizing: border-box;
  border: 1px solid #707070;
  outline: none;
  height: 96px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#comments .form-comment .btn-submit {
  background-color: #000;
  color: #fff;
  border-color: transparent;
  float: right;
}
#comments .form-comment .btn-submit:hover {
  opacity: 0.8;
}
#comments .holder-comments .lc-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
}
#comments .holder-comments .lc-head .lch-sort {
  z-index: 5;
}
#comments .holder-comments .lc-head .lch-sort .dd-toggle {
  color: #1653FC;
}
#comments .holder-comments .lc-head .lch-sort .dd-toggle::after {
  border-color: #1653FC;
}
#comments .holder-comments .lc-head .lch-sort .dd-content {
  right: inherit;
  left: 0;
  list-style: none;
  margin-left: 0;
  padding: 8px 0;
  background-color: #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 {
  display: block;
  border: 1px solid #CCCCCC;
}
.box-cross .bc-title {
  background-color: #efefef;
  padding: 10px;
}

.box-cross,
.mod-accordion {
  max-width: 580px;
}

.wrap-box-mod {
  font-size: 14px;
  padding: 15px 10px;
}
.wrap-box-mod ul,
.wrap-box-mod ol {
  margin-left: 40px;
}
.wrap-box-mod ul li,
.wrap-box-mod ol li {
  margin-bottom: 5px;
}
.wrap-box-mod ul {
  margin-left: 24px;
  list-style: none;
}
.wrap-box-mod ul li {
  font-style: italic;
}
.wrap-box-mod ul li::before {
  content: "-";
  display: inline-block;
  margin-right: 10px;
}
.wrap-box-mod .links .item {
  margin-bottom: 10px;
}
.wrap-box-mod .links .item:last-child {
  margin-bottom: 0;
}
.wrap-box-mod .links .item a {
  display: flex;
  align-items: center;
  color: #1A73D6;
  max-width: 100%;
}
.wrap-box-mod .links .item a .icon-svg {
  min-width: 22px;
}
.wrap-box-mod .links .item a .icon-svg, .wrap-box-mod .links .item a span {
  word-break: break-word;
}
.wrap-box-mod .links .item a:hover {
  color: #000;
}

.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;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #1A73D6;
  border: 1px solid #1A73D6;
  border-radius: 50px;
  background-color: #fff;
  z-index: 2;
}
.box-faq .bfaq-body .item .box-showless .bsl-toggle:hover {
  cursor: pointer;
  background-color: #1A73D6;
  color: #fff;
  opacity: 1;
}
.box-faq .bfaq-body .item .box-showless .bsl-toggle::after {
  display: none;
}
.box-faq .bfaq-body .item .box-showless::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

#btn-page-scroll {
  position: fixed;
  bottom: 4px;
  right: 5px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  z-index: 15;
  background: #56eda8;
  border-radius: 12px;
  transform: translate3d(0, 70px, 0);
  transition: all 0.5s linear;
}
#btn-page-scroll svg {
  fill: #000;
}
#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: #000;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #56eda8;
  background-repeat: repeat-x;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 2px 10px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 3px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#pageDownload2WrapButton {
  margin: 15px auto;
  display: inline-block;
}
#pageDownload2WrapButton .btn {
  display: none;
}
#pageDownload2WrapButton .counter {
  font-size: 3em;
  font-weight: bold;
  color: #1A73D6;
  text-align: center;
}
#pageDownload2WrapButton.done .btn {
  display: inline-block;
}
#pageDownload2WrapButton.done .counter {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden {
  display: none !important;
}

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

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

#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;
  -webkit-appearance: none;
     -moz-appearance: 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;
}

.quickLinkSec {
  display: none;
  background-color: rgba(86, 237, 168, 0.04);
  padding: 8px 12px;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 3%;
  border-radius: 8px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.quickLinkSec .title {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin-bottom: 16px;
}
.quickLinkSec a {
  color: #1A73D6;
  font-size: 13px;
  margin-bottom: 10px;
}
.quickLinkSec a:visited {
  color: #1A73D6;
}
.quickLinkSec a:hover {
  font-weight: 700;
}
.quickLinkSec a.active {
  font-weight: 700;
}

.detailInfo .secInfo {
  margin-bottom: 24px;
}
.detailInfo .secInfo .title {
  font-size: 16px;
  font-weight: 500;
  background-color: #fee2e2;
  color: #d70018;
  padding: 8px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.detailInfo .secInfo .body .item {
  display: flex;
  padding: 10px 8px;
  border-radius: 3px;
}
.detailInfo .secInfo .body .item:nth-child(odd) {
  background-color: #f7f7f7;
}
.detailInfo .secInfo .body .item:hover {
  background-color: rgba(250, 177, 160, 0.1);
}
.detailInfo .secInfo .body .item .attribute {
  width: 20%;
  min-width: 120px;
  color: #363636;
  font-weight: 600;
  font-size: 14px;
}
.detailInfo .secInfo .body .item .value {
  width: 80%;
  color: #000;
  font-size: 13px;
}

.cover {
  position: relative;
  width: 60vw;
  max-width: 600px;
  margin: 0 auto;
}

.cover img {
  margin: 0 auto;
}

.main {
  width: 100%;
  margin: 0 auto;
}

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

.main-cover {
  display: flex;
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 0 6px 0;
  border-radius: 10px;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.main-cover a {
  text-decoration: none;
}

.main-cover .game-cover {
  border-radius: 10px;
}

.recommend {
  width: 100%;
  max-width: 16.1%;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}
.recommend .icon-item {
  width: 100%;
}
.recommend .icon-item a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 21px;
  overflow: hidden;
  border: 0 solid #fff;
  box-shadow: 0 5px 9px 1px rgba(24, 11, 2, 0.11);
}

.recommend .icon-item {
  height: calc((100vw - 32px) / 4 * 0.58);
  margin: 4px;
  position: relative;
  box-sizing: content-box;
  border-radius: 22px;
}

.recommend div.loading-img {
  width: 100%;
  height: 100%;
  background: #0bcbff;
  position: relative;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

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

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.loading_wrp {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 320px;
}

.homePage {
  padding-bottom: 0px !important;
}

.page404 {
  background-color: transparent !important;
}

.main-cover {
  display: flex;
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 0 6px 0;
  border-radius: 10px;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

#playViewer {
  position: relative;
  display: none;
  width: 100%;
  height: 200px;
}

.loading-view {
  position: relative;
  width: 100%;
  height: 476px;
  border-bottom-left-radius: 21px;
  border-bottom-right-radius: 21px;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.loading-view h3 {
  height: 50px;
  line-height: 50px;
  width: 100%;
  text-align: center;
}

div.game-cover {
  position: relative;
  background-image: url(/assets/image/loading_cover.png);
  background-size: 100% 100%;
  background-position: center;
  width: 100%;
  height: 0;
  min-height: 426px;
  border-radius: 10px;
}

div.d_loading {
  height: 100%;
  width: 30%;
  background-image: url(/static/image/hand.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading-active {
  width: 135%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-repeat: no-repeat;
  background-image: url(/assets/image/pen_color.png);
  background-size: 100%;
  background-position: center;
  animation: 1s rotate_01 infinite linear;
}

#playViewerContent {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#playViewer iframe {
  position: absolute;
}

#playViewer .screen-btn {
  display: none;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 8vw;
  height: 8vw;
  max-width: 50px;
  max-height: 50px;
  padding: 4px;
  z-index: 9;
  border-radius: 5px;
  background-color: rgba(34, 99, 243, 0.8);
  box-shadow: 0 0 4px #cfcf4d;
}

#playViewer {
  width: 100%;
  height: 0;
  padding-bottom: 106%;
}

.gameLoadTitle {
  color: #ff541e;
  font-size: 16px;
  letter-spacing: 1px;
}

.blockRelated {
  margin-top: 50px;
  margin-bottom: 40px;
}

.bounceIn {
  animation: bounceIn 0.5s linear both;
}

.icon-item:active {
  animation: scale-up-center 0.1s linear both;
}

.bounceIn {
  animation: bounceIn 0.5s linear both;
}

.rotate-diagonal-1 {
  animation: rotate-diagonal-1 1.5s 0.2s linear both infinite;
}
@keyframes rotate-diagonal-1 {
  0% {
    transform: rotate3d(1, 1, 0, 0deg) scale(1);
  }
  25% {
    transform: rotate3d(1, 1, 0, -180deg) scale(1.5);
  }
  50% {
    transform: rotate3d(1, 1, 0, -360deg) scale(1);
  }
  100% {
    transform: rotate3d(1, 1, 0, -360deg) scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes rotate-center {
  0% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes scale-up-center {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shake-bottom {
  0%, 100% {
    transform: rotate(0);
    transform-origin: 50% 100%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes rotate_02 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(20deg);
  }
}
@keyframes rotate_01 {
  0% {
    transform: translate(-50%, 0) rotate(0);
  }
  100% {
    transform: translate(-50%, 0) rotate(-360deg);
  }
}
.postInfoBlock {
  margin-top: 20px;
}
.postInfoBlock .postTitle {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2b2b2b;
}
.postInfoBlock .postDescription {
  font-size: 16px;
  font-weight: 300;
  color: #2b2b2b;
  line-height: 28px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
}
.row > * {
  padding-left: 6px;
  padding-right: 6px;
}

.sec {
  border-radius: 15px;
  width: 100%;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  margin-bottom: 20px;
}
.sec .secTitle {
  font-size: 18px;
  margin-bottom: 10px;
}

.secContentHome {
  margin-top: 30px;
}

.blockCategory {
  background-color: #0bcbff;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 30px;
}

.listCategory {
  display: flex;
}

.cateItemWrp {
  width: 100%;
  padding-left: 6px;
  padding-right: 6px;
  margin-bottom: 16px;
}
.cateItemWrp .cateItem {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: row;
  justify-content: flex-start;
  height: 120px;
}
.cateItemWrp .cateItem .cover {
  margin: 0px;
  padding: 12px;
  width: 65%;
}
.cateItemWrp .cateItem .cover img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.cateItemWrp .cateItem .content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cateItemWrp .cateItem .content img {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
}
.cateItemWrp .cateItem .content .title {
  font-size: 15px;
  font-weight: 700;
  color: #0bcbff;
}

.tagItem {
  padding: 5px 10px;
  background-color: #56eda8;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.tagItem:visited {
  color: #fff;
}

.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-to-bottom-right:hover {
  animation-name: hvr-wobble-to-bottom-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

/* Wobble To Bottom Right */
@keyframes hvr-wobble-to-bottom-right {
  16.65% {
    transform: translate(8px, 8px);
  }
  33.3% {
    transform: translate(-6px, -6px);
  }
  49.95% {
    transform: translate(4px, 4px);
  }
  66.6% {
    transform: translate(-2px, -2px);
  }
  83.25% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-wobble-to-bottom-right:hover, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:active {
  animation-name: hvr-wobble-to-bottom-right;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

@media screen and (max-width: 991px) {
  .listGameTop {
    display: flex;
    flex-direction: column;
  }
  .listGameTop .right {
    display: none;
  }
  .listGameTop .left .gameMain {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    background-color: red;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .listGameTop .left .gameMain .title {
    height: 30px;
    bottom: 0px;
    display: flex;
    align-items: center;
    background-color: #fff;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
  }
}
.game-card {
  width: 100%;
  border: 5px solid #f4c542;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: 20px auto;
}
.game-card .iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #ececec;
}
.game-card .iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
.game-card .iframe-container .play-now {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  background-color: #00cc44;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.game-card .iframe-container .play-now:hover {
  background-color: #009933;
}
.game-card .game-info {
  display: flex;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #ddd;
  background-color: #fefefe;
  justify-content: space-between;
}
.game-card .game-info .game-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.game-card .game-info .game-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.game-card .full-game {
  cursor: pointer;
}
.game-card .full-game:hover path {
  fill: #009933;
}
.game-card .game-actions {
  display: flex;
  justify-content: space-around;
  padding: 10px;
  background-color: #f4c542;
  color: #666;
}
.game-card .game-actions span {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.game-card .game-actions span i {
  margin-right: 5px;
  color: #666;
}

@media screen and (min-width: 768px) {
  #playViewer {
    width: 100%;
    height: 0;
    padding-bottom: 57%;
  }
  .list2pc1mb .cardGameWrp:last-child {
    display: block;
  }
  .cardGameWrp {
    width: 50%;
  }
  .mainPlayPage {
    margin-top: 70px;
  }
  .listCategory .cateItemWrp {
    width: 33.3333%;
  }
}
@media screen and (min-width: 992px) {
  .hdplay2 {
    display: flex !important;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
  }
  .listCategory {
    flex-wrap: wrap;
  }
  .secbox .sbheader {
    margin-bottom: 12px;
  }
  .secbox .sbheader .sbhTitle {
    font-size: 22px;
  }
  .container {
    padding-left: 0px;
    padding-right: 0px;
  }
  #page-header {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  #page-header .ph-left {
    display: flex;
    padding: 0;
    margin-left: 25px;
    flex-direction: row-reverse;
  }
  #page-header .ph-left .nmi-menu-toggle {
    display: none;
  }
  #page-header .ph-left .nmi-search-toggle {
    position: absolute;
    right: 16px;
    top: 24px;
    z-index: 6;
  }
  #page-header .ph-left .nmi-search-toggle svg path {
    fill: #000;
  }
  #page-header .ph-left .logo {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 16px;
  }
  #page-header .ph-left .logo img {
    height: 32px;
  }
  #page-header .ph-left .mainLogo {
    animation: tada 1s;
  }
  #page-header #search-holder .form-search {
    margin: 120px auto 0 auto;
  }
  #page-header #search-holder .form-search #suggest-text,
  #page-header #search-holder .form-search input {
    height: 40px;
    line-height: 40px;
  }
  #page-header #menu-holder {
    display: flex;
    align-items: center;
    position: static;
    right: inherit;
    top: inherit;
    bottom: inherit;
    background-color: transparent;
    transform: translateX(0);
    width: inherit;
    max-width: inherit;
    overflow: inherit;
    z-index: 5;
    height: 100%;
    box-shadow: none;
  }
  #page-header #menu-holder .nmi-menu-toggle {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  #page-header #menu-holder .menu {
    margin: 0;
  }
  #page-header #menu-holder .menu li {
    display: inline-block;
    padding: 0;
  }
  #page-header #menu-holder .menu li a {
    color: #000;
    padding: 22px 30px;
    font-size: 1.125rem;
    font-weight: bold;
  }
  #page-header #menu-holder .menu li a:hover {
    color: #1A73D6;
  }
  #page-header #menu-holder .menu li a img {
    width: 18px;
    height: 18px;
  }
  #page-header #menu-holder .login {
    top: inherit;
    left: inherit;
    position: relative;
    margin-left: 20px;
  }
  #page-header #menu-holder .login .dd-toggle svg path {
    fill: #000;
  }
  #page-header #menu-holder .login .dd-content {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 10px 0;
    border-radius: 3px;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  }
  #page-header #menu-holder .login .dd-content a {
    color: #000;
    display: block;
    padding: 5px 16px;
    margin-left: 0;
    font-size: 1rem;
  }
  #page-header #menu-holder .login .dd-content a:hover {
    color: #1A73D6;
  }
  #page-header #menu-holder .login.open .dd-content {
    display: block;
  }
  .wrapcontent > * {
    word-break: inherit;
  }
  #page-body {
    padding-top: 85px;
  }
  #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;
  }
  #playViewer {
    width: 68.3%;
    height: 0;
    padding-bottom: 38%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
  }
  .loading-view {
    width: 68.3%;
    height: 0px;
    padding-bottom: 38%;
  }
  div.game-cover {
    min-height: 0px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: calc(100% - 50px);
  }
  .gameLoadTitle {
    position: absolute;
    height: 50px;
    bottom: 0px;
    left: 0px;
  }
  .listGameTop {
    height: 376px;
    display: flex;
    flex-wrap: wrap;
  }
  .listGameTop .left {
    width: 70%;
    height: 100%;
    padding-right: 20px;
  }
  .listGameTop .left .gameMain {
    display: block;
    position: relative;
    height: 100%;
  }
  .listGameTop .left .gameMain .title {
    padding-left: 25px;
    padding-top: 7px;
    font-size: 20px;
    position: absolute;
    top: 0px;
    height: 100px;
    background-color: #fff;
    color: #2b2b2b;
    font-size: 17px;
    font-weight: bold;
    width: 60%;
    border-radius: 21px;
  }
  .listGameTop .left .gameMain img {
    position: absolute;
    top: 38px;
    width: 100%;
    border-radius: 21px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  }
  .listGameTop .right {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 21px;
  }
  .listGameTop .right .game {
    height: 49%;
  }
  .listGameTop .right .game .title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
    color: #212529;
    height: 34px;
    background-color: #fff;
    border-top-left-radius: 21px;
    border-top-right-radius: 21px;
  }
  .listGameTop .right .game img {
    border-bottom-left-radius: 21px;
    border-bottom-right-radius: 21px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  }
  .listGameTop .right .game:first-child {
    margin-bottom: 3%;
  }
  .listAdsPageBot .cardGameWrp:first-child {
    display: none;
  }
  .listAdsPageBot .cardGameWrp:nth-child(2) {
    display: none;
  }
}/*# sourceMappingURL=style2.css.map */