@import url("settings/bootstrap.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");

body {
  overflow-x: hidden;
}

@media (min-width: 1025px) {
  .container {
    width: 1180px;
  }
}

/* Header */
header {
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
  padding: 8px 0;
}

.logo img {
  max-height: 45px;
}

.gsc-control-cse {
  padding: 0 !important;
}

.box-search {
  position: relative;
  display: flex;
  align-items: center;
}

.box-search > div {
  width: 100% !important;
}

.gsc-input-box {
  background: initial !important;
  border: initial !important;
}

.box-search form,
.gsc-search-box-tools {
  border-radius: 5px;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 30px;
  transition: width 0.5s ease;
  border: 1px #afafaf solid;
  margin-bottom: 0 !important;
}

.box-search input,
input.gsc-input {
  height: 28px !important;
  border-radius: 5px !important;
  padding: 8px !important;
  color: #bfbaba !important;
  font-size: 12px !important;
  border: 0 !important;
  margin-left: 7px !important;
  /* display: none !important; */
  background-color: transparent !important;
  margin-top: 0 !important;
}

.gsib_b {
  display: none !important;
}

.box-search input::-webkit-input-placeholder,
input.gsc-input::-webkit-input-placeholder {
  /* Edge */
  color: #bfbaba !important;
  font-style: italic !important;
}

.box-search input:-ms-input-placeholder,
input.gsc-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #bfbaba !important;
  font-style: italic !important;
}

.box-search input::placeholder,
input.gsc-input::placeholder {
  color: #bfbaba !important;
  font-style: italic !important;
}

.box-search input:focus,
input.gsc-input:focus {
  outline: none !important;
}

.box-search form button,
.gsc-search-button-v2 {
  border: 0 !important;
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 50px !important;
  fill: #fff !important;
  padding: 0 !important;
}

.gsc-search-button-v2 svg {
  fill: blue;
}

/* Footer */
footer {
  margin-top: 20px;
  padding: 20px 0 10px;
}

footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 7px 0;
}

footer ul li,
footer p {
  margin-right: 10px;
  color: #aaaaaa;
  font-size: 11px;
}

footer a {
  color: #aaaaaa;
  text-decoration: none;
}

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

/* Menu */
.menu-button {
  text-decoration: none;
  margin-right: 10px;
  cursor: pointer;
  color: #000;
}

.menu-button svg {
  font-size: 30px;
}

#pageContainer {
  position: relative;
  -webkit-transition: right 0.3s linear;
  transition: right 0.3s linear;
  right: 0;
}

#pageContainer.sidebar-open {
  right: -300px;
}

#menuSidebar {
  position: fixed;
  right: 0;
  transition: left 0.3s linear;
  top: 0;
  width: 300px;
  left: -300px;
  background: #fff;
  height: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12),
    0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

#menuSidebar.sidebar-open {
  left: 0;
}

#menuSidebar ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-size: 18px;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#menuSidebar ul li {
  padding-bottom: 10px;
  color: #776f6f;
  font-weight: bold;
  cursor: pointer;
}

#menuSidebar ul li a {
  font-size: 16px;
  color: #776f6f;
  font-weight: bold;
  -webkit-text-decoration: none;
  text-decoration: none;
}

#menuSidebar ul li a:hover {
  opacity: 0.8;
}

/* Boxes */
.boxes {
  background-color: #fff;
  border-radius: 4px;
  height: 100%;
  list-style-type: none;
  counter-reset: ranking 0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.05),
    0 3px 1px -2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1),
    0 1px 5px 0 rgba(0, 0, 0, 0.05), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.box-title {
  display: flex;
  align-items: center;
  padding: 16px 8px;
}

.box-title .icon {
  font-size: 16px;
  height: 40px;
  display: none;
  align-items: center;
}

.box-title .icon:after {
  content: "|";
  font-size: 7px;
  margin: 0 7px;
}

.box-title h3,
.box-title h1 {
  font-size: 17px;
  color: #776f6f;
  font-weight: bold;
  margin: 0;
}

.box-title-article h3 {
  display: flex;
  font-weight: normal;
}

.box-title a {
  display: flex;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  font-size: 12px;
  margin-left: auto;
  color: #555555;
}

.box-title a svg.iconify {
  font-size: 15px;
}

/* App Resume */
.app-resume a {
  padding: 8px;
  display: flex;
  text-decoration: none;
  align-items: center;
}

.app-resume .app-thumb {
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 70px;
}

.app-resume .app-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.app-info-title-and-evaluation {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.app-resume .app-info {
  flex-grow: 1;
  width: 50%;
  padding: 0 10px 0 0;
}

.app-resume:hover .app-info {
  cursor: pointer;
}

.app-resume:hover h4 {
  text-decoration: underline;
}

.app-resume .app-info h4 {
  color: #555555;
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 0 10px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.app-resume .app-info .app-evaluation {
  font-size: 12px;
  font-weight: bold;
  color: #afafaf;
  margin: 0 0 0 10px;
  display: flex;
  align-items: center;
}

.app-resume .app-info .app-evaluation svg.iconify {
  font-size: 9px;
  color: #afafaf;
  margin-left: 3px;
}

.app-resume .app-info p,
.post-item .post-info p {
  font-size: 12px;
  color: #555555;
  margin: 0 0 0 10px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.app-resume .app-info small {
  font-size: 10px;
  color: #069ef4;
  margin: 0 0 0 10px;
  display: block;
}

.app-resume .app-download {
  margin-left: auto;
  display: none !important;
  align-items: center;
}

.app-resume .app-download svg.iconify {
  font-size: 30px;
}

.app-resume.app-resume-list {
  counter-increment: ranking 1;
}

.app-resume.app-resume-list a {
  padding: 8px 16px;
}

/* .app-resume.app-resume-list:nth-child(odd) a {
  background-color: #f3f8ff;
} */

.app-resume.app-resume-list a:hover {
  background-color: #f9f9f9;
}

.app-resume.app-resume-list a:before {
  content: counter(ranking);
  font-size: 12px;
  font-weight: bold;
  color: #afafaf;
  margin-right: 8px;
}

.app-resume.app-resume-list .app-thumb {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.app-resume.app-resume-list .app-info {
  display: flex;
  align-items: center;
}

.app-resume.app-resume-list .app-info h4 {
  color: #555555;
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 0 10px;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.app-resume.app-resume-list .app-info .app-evaluation {
  font-size: 12px;
  color: #afafaf;
  margin: 0 8px 0 5px;
}

.app-resume.app-resume-list .app-info .app-evaluation svg.iconify {
  font-size: 9px;
  color: #afafaf;
}

.app-resume.app-resume-list .app-info p,
.app-resume.app-resume-list .app-info small {
  display: none;
}

.app-resume.app-resume-list .app-download {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.app-resume.app-resume-list .app-download svg.iconify {
  font-size: 21px;
}

.app-resume-slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 56px);
}

.app-resume-slide > .app-resume-slide-item:nth-child(2),
.app-resume-slide > .app-resume-slide-item:nth-child(3),
.app-resume-slide > .app-resume-slide-item:nth-child(4),
.app-resume-slide > .app-resume-slide-item:nth-child(5) {
  display: none;
}

.app-resume-slide-item {
  padding: 0 16px;
}

.app-resume-slide-item a {
  display: flex;
  text-decoration: none;
}

.app-resume-slide-item .app-thumb {
  width: 116px;
  height: 116px;
  flex-basis: 116px;
}

.app-resume-slide-item .app-info {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-resume-slide-item .app-info h4 {
  color: #747474;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  text-decoration: none;
}

.app-resume-slide-item .app-info strong {
  font-size: 13px;
  color: #262626;
  text-decoration: underline;
}

.app-resume-slide-item .app-info:hover strong {
  text-decoration: none;
}

/* Post item */

.post-item {
  padding-top: 8px;
  padding-bottom: 8px;
}

.post-item a {
  text-decoration: none;
}

.post-item a:hover h4 {
  text-decoration: underline;
}

.post-item .post-thumb {
  width: 100%;
  height: 113px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 174px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.post-item .post-thumb:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(40%, rgba(0, 0, 0, 0)),
    color-stop(100%, rgba(0, 0, 0, 0.7))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.post-item .post-thumb img {
  width: 100%;
  height: 113px;
  object-fit: cover;
}

.post-item .post-info {
  padding-left: 4px;
}

.post-item .post-info small {
  font-size: 10px;
  display: block;
}

.post-item .post-info h4 {
  color: #555555;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-item .post-info p {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  margin: 2px 0 0;
}

.blog-list,
.apps-grid {
  padding: 0 8px 0;
}

/*  */
.color-blue .icon,
small.color-blue {
  color: #069ef4;
}

.color-blue.tab-active,
.trend-tab .box-title.color-blue:hover {
  border-color: #069ef4 !important;
}

.mt-16 {
  margin-top: 16px;
}

.pr-0 {
  padding-right: 0 !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pt-28 {
  padding-top: 28px !important;
}

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

.pb-16 {
  padding-bottom: 16px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.page-section {
  min-height: calc(100vh - 175px);
  display: flex;
  align-items: flex-start;
}

.title-page-error h1 {
  font-size: 10em;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  color: #0000002b;
}

.page-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #00000094;
}

.page-error form {
  background: #0000000f;
  border-radius: 25px;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 50px;
  margin-top: 10px;
}

.page-error form input.search-field {
  height: 40px;
  border-radius: 20px 0px 0px 20px;
  padding: 8px;
  color: #000;
  font-size: 16px;
  border: 0;
  margin-left: 7px;
  background-color: transparent;
  width: 250px;
}

.page-error form input:focus {
  outline: none;
}

.page-error form button {
  border: 0;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  background-color: transparent;
  font-size: 25px;
}

/* contact */
form.contact-form {
  padding: 8px;
}

label {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea {
  border: 1px #afafaf solid;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 44px;
  padding: 14px;
  color: #989595;
  font-size: 12px;
  margin-top: 4px;
}

textarea {
  height: 150px;
}

input:focus,
textarea:focus {
  outline: none;
}

.wpcf7-response-output {
  padding: 1rem !important;
  margin-bottom: 1rem;
  border-radius: 0.375rem;
  font-size: 0.8rem;
}

.wpcf7-submit {
  background: #02e25c;
  border-radius: 5px;
  height: 35px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  border: 0;
  min-width: 120px;
}

.sidebar .blog-list .post-info {
  padding-left: 12px;
  padding-top: 12px;
}

/* Article */
.post-description {
  padding: 8px 8px 0;
}

.post-description h1,
.article-description h1,
.post-description h2,
.article-description h2,
.post-description h3,
.article-description h3,
.post-description h4,
.article-description h4,
.post-description h5,
.article-description h5,
.post-description h6,
.article-description h6 {
  color: #555555;
}

.post-description p,
.post-description strong,
.article-description p,
.article-description strong {
  font-size: 15px;
  color: #555555;
}

.post-description h1,
.article-description h1 {
  font-size: 1.75rem;
}

.post-description h2,
.article-description h2 {
  font-size: 1.5rem;
}

.post-description h3,
.article-description h3 {
  font-size: 1.25rem;
}

.post-description h4,
.article-description h4 {
  font-size: 1.12rem;
}

.post-description h5,
.article-description h5 {
  font-size: 1rem;
}

.post-description h6,
.article-description h6 {
  font-size: 0.9rem;
}

.post-description li,
.article-description li {
  font-size: 12px;
  color: #555555;
}

.post-description img,
.article-description img {
  max-width: 100%;
  height: auto;
  width: auto !important;
}

.post-description figure,
.article-description figure {
  max-width: 100%;
  height: auto;
  width: auto !important;
}

.post-description figcaption,
.article-description figcaption {
  background: #f9f9f9;
  font-size: 12px;
  color: #555555;
  font-style: italic;
  padding: 4px;
}

.btn-read-more {
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 12px;
  color: #5f5f5f;
  position: absolute;
  top: 200px;
  z-index: 2;
  left: 50%;
  margin-left: -32px;
  display: none;
}

.items-wrapper {
  position: relative;
}

.items-wrapper .items {
  display: flex;
  overflow: auto;
  /* scroll-snap-type: x mandatory; */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 0;
  list-style: none;
}

.items-wrapper .items .item {
  flex: none;
  /* scroll-snap-align: start; */
  cursor: pointer;
  margin-right: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.items-wrapper .items .item img {
  height: 350px;
}

.items::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.items::-webkit-scrollbar-track {
  background: transparent;
}

.items::-webkit-scrollbar-thumb {
  background-color: transparent;
  visibility: hidden;
}

.items-wrapper:hover .items::-webkit-scrollbar-thumb {
  visibility: visible;
}

.items-prev,
.items-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  height: 100% !important;
  width: 56px !important;
  z-index: 1;
}

.items-prev {
  left: -8px;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 27%,
    rgba(255, 255, 255, 0.011642156862745057) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 27%,
    rgba(255, 255, 255, 0.011642156862745057) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 27%,
    rgba(255, 255, 255, 0.011642156862745057) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.items-next {
  right: -8px;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 27%,
    rgba(255, 255, 255, 0.011642156862745057) 100%
  );
  background: -webkit-linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 27%,
    rgba(255, 255, 255, 0.011642156862745057) 100%
  );
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 27%,
    rgba(255, 255, 255, 0.011642156862745057) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.items-prev:before,
.slick-prev:before {
  content: url("https://api.iconify.design/ic/round-keyboard-arrow-left.svg?height=30&color=%235f6368") !important;
}

.items-next:before,
.slick-next:before {
  content: url("https://api.iconify.design/ic/round-keyboard-arrow-right.svg?height=30&color=%235f6368") !important;
}

/* App detail */
.box-app-resume {
  padding: 8px;
}

.app-thumb-detail {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-thumb-detail div {
  width: 228px;
  height: 228px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.app-thumb-detail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.app-infos,
.box-previous-version {
  font-size: 15px;
}

.app-infos table,
.box-previous-version table {
  margin: 0;
}
.app-infos table tr:last-child td,
.box-previous-version table tr:last-child td {
  border: 0;
}

.app-review-stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  line-height: 1;
  margin-left: 2px;
}

.app-review-stars::before {
  content: "★★★★★";
  letter-spacing: 2px;
  background: linear-gradient(
    90deg,
    #ffa800 var(--percent),
    rgb(189, 189, 189) var(--percent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-review-count,
.app-post-count {
  font-weight: 700;
  font-size: 12px;
  color: #87a9ff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.box-previous-version {
  padding: 8px;
}

.app-version-extensions {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.app-xapk,
.app-obb,
.app-apk {
  width: 49px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  font-weight: 700;
  font-size: 10px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
}

.app-xapk {
  background-color: #048ad6;
  color: #fff;
}

.app-obb {
  background-color: #d104d6;
  color: #fff;
}

.app-apk {
  background-color: #52bf56;
  color: #fff;
}

@media (min-width: 390px) and (max-width: 450px) {
  .app-thumb-detail div {
    width: 100px;
    height: 100px;
  }
}
