﻿.skeleton {
  position: relative;
  background: #e6e6e6;
  overflow: hidden;
  color: transparent;
}
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
  animation: sk-shimmer 1.2s infinite;
}
@keyframes sk-shimmer {
  100% { transform: translateX(100%); }
}
.sk-img.skeleton {
  display: inline-block;
  border-radius: 12px;
  width: var(--ps-logo, 64px);
  height: var(--ps-logo, 64px);
}
.sk-text.skeleton {
  display: inline-block;
  border-radius: 6px;
  width: clamp(140px, 55vw, 260px);
  height: 22px;
}
.fav-logo {
  width: var(--ps-logo, 64px);
  height: var(--ps-logo, 64px);
  object-fit: cover;
  border-radius: 12px;
}
.page_title.comp-name {
  line-height: 22px;
  min-height: 22px;
}
@media (max-width:576px) {
  .fav-logo {
    width: var(--ps-logo, 58px);
    height: var(--ps-logo, 58px);
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
    display: inline-block;
    flex: 0 0 auto;
    object-fit: cover;
  }
  .fav-logo-skel {
    width: var(--ps-logo, 58px);
    height: var(--ps-logo, 58px);
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
    display: inline-block;
    flex: 0 0 auto;
  }
  .sk-img.skeleton {
    width: var(--ps-logo, 58px);
    height: var(--ps-logo, 58px);
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
  }
}
.gp-scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.gp-scroll-bar.gp-scroll-bar-scrolled {
  border-bottom-color: #e8eaed;
  box-shadow: 0 2px 8px rgba(60, 64, 67, .14);
}
body.gp-play-page {
  padding-top: calc(52px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}
.gp-scroll-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 14px 10px;
  max-width: 100%;
  box-sizing: border-box;
}
.gp-scroll-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.gp-scroll-brand .gp-playstore-logo {
  flex-shrink: 0;
  display: block;
  width: 28px;
  height: 28px;
}
.gp-scroll-title {
  font: 500 1.05rem/1.25 Roboto, "Segoe UI", system-ui, sans-serif;
  color: #5f6368;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.gp-scroll-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.gp-scroll-actions button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: #5f6368;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.gp-scroll-actions button:active {
  background: rgba(95, 99, 104, .12);
}
.gp-scroll-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 4px;
  vertical-align: middle;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.reviews-list > .reviews-container {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f5f5f5;
}
.reviews-list > .reviews-container:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/* Layout (originally from download/style.css) */
body {
  font-family: Roboto, "Segoe UI", system-ui, sans-serif;
  margin: 0;
  padding: 0;
}
*, *::before, *::after { box-sizing: border-box; }
p { margin: 0; }
img {
  max-width: 100%;
  vertical-align: middle;
}
.ratings-container {
  padding: 40px 16px 0 16px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 360px) {
  .ratings-container img {
    width: 100%;
    height: auto;
  }
}
.section-header--large {
  font-size: 16px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
  margin-top: 36px;
  font-family: "Trim-Bold", sans-serif;
}
@media screen and (min-width: 1224px) {
  .section-header--large {
    font-size: 48px;
    line-height: 56px;
    margin-top: 72px;
    margin-bottom: 24px;
  }
}
.about-container { padding: 0 16px; }
.about-heading {
  font-size: 18px;
  line-height: 32px;
  text-align: left;
  font-weight: 500;
  color: #4A4A4A;
  margin: 0;
  margin-top: 19px;
  margin-bottom: 4px;
}
.reviews-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.uname-first {
  padding: 4px 11px;
  border-radius: 50%;
  margin-right: 12px;
  text-transform: uppercase;
  color: #fff;
  background-color: #8d8d8d;
  flex-shrink: 0;
}
.u-name {
  color: #4A4A4A;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 20px;
  word-wrap: break-word;
}
.date {
  color: #4A4A4A;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: 500;
  line-height: 16px;
  word-wrap: break-word;
  margin-top: 4px;
  margin-left: 8px;
}
.comment {
  color: #676E7C;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
  margin-top: 7px;
}
.top-download-btn { margin-top: 24px; }
.banner_container {
  margin-left: 16px;
  margin-right: 16px;
  margin-top: 40px;
}
.image_title__container {
  height: 80px;
  width: 100%;
  display: flex;
}
.banner_image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}
.right_image {
  margin-left: 28px;
  height: 80px;
  width: 100%;
}
.page_title {
  font-family: sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #4A4A4A;
  font-weight: 900;
}
.sub_info { display: flex; flex-direction: column; }
.btn-text {
  border: 1px solid rgba(35, 0, 70, .15);
  font-size: 10px;
  line-height: 12px;
  padding: 2px 8px;
  border-radius: 100px;
  color: rgba(35, 0, 70, 0.65);
}
.btn-text + .btn-text { margin-left: 6px; }
.sub_title {
  white-space: nowrap;
  color: #18812F;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: 500;
  line-height: 16px;
}
.rating-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 28px;
}
.first_rating {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.rating_title {
  font-size: 16px;
  font-weight: 900;
  line-height: 22px;
  color: #230046;
  font-family: sans-serif;
}
.rating_title .fa-star { color: #F4B400; }
.rating_subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #676E7C;
  font-family: sans-serif;
}
.vl {
  border-left: 1px solid rgba(35, 0, 70, 0.35);
  margin-top: 10px;
  margin-bottom: 9px;
}
.inbtn {
  background: #00895B;
  border-radius: 4px;
  color: #fff;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 20px;
  border: none;
  height: 36px;
  font-weight: 900;
  cursor: pointer;
}
.desktop-banner { display: none; }
@media screen and (min-width: 1224px) {
  .ps-div { display: none; }
  .desktop-banner {
    display: block;
    margin-top: 64px;
  }
}
.first-para {
  color: #676E7C;
  font-size: 14px;
  line-height: 20px;
  margin-top: 4px;
}
.text-container { margin-top: 8px; }
.more-btn {
  color: #18812F;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
  cursor: pointer;
  user-select: none;
}
.btn-text-ab {
  border: 1px solid rgba(35, 0, 70, .15);
  font-size: 10px;
  line-height: 12px;
  padding: 2px 8px;
  border-radius: 100px;
  color: rgba(35, 0, 70, 0.65);
  display: inline-block;
  margin-right: 6px;
  margin-top: 8px;
}
.payment--section {
  text-align: center;
  padding: 0 16px 17px 15px;
}
.payment--icons--section {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.payment--img--block {
  width: 80px;
  height: auto;
  text-align: center;
}
.payment__img {
  display: block;
  margin: auto;
  width: 64px;
  height: 64px;
  margin-bottom: 6px;
}
.payment--text {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #230046;
}
.sticky-footer-new {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 100;
  padding: 0 0 16px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0 -4px 8px;
  flex-direction: column;
}
.sticky-download-button-new {
  padding: 0 24px;
  width: 100%;
  display: flex;
  justify-content: center;
  animation: shake-animation 3.72s ease infinite;
  transform-origin: 50% 50%;
}
@keyframes shake-animation {
  0% { transform: translate(0, 0); }
  1.78571% { transform: translate(5px, 0); }
  3.57143% { transform: translate(0, 0); }
  5.35714% { transform: translate(5px, 0); }
  7.14286% { transform: translate(0, 0); }
  8.92857% { transform: translate(5px, 0); }
  10.71429% { transform: translate(0, 0); }
  100% { transform: translate(0, 0); }
}
@keyframes changewidth {
  from { left: -75px; }
  to { left: 120%; }
}
.play-download-btn {
  position: relative;
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  background: #00895B;
  border: none;
  border-radius: 4px;
  font-family: sans-serif;
  font-size: 20px;
  line-height: 48px;
  margin: auto;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.play-download-btn::after,
.play-download-btn::before {
  background: #fff;
  opacity: 0.25;
  position: absolute;
  top: -25px;
  transform: rotate(50deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  animation: changewidth 3s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  content: "";
  pointer-events: none;
}
.play-download-btn::after {
  height: 95px;
  left: -75px;
  width: 5px;
}
.play-download-btn::before {
  height: 130px;
  left: -200px;
  width: 10px;
}
.download-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
@media screen and (max-width: 330px) and (min-width: 311px) {
  .sticky-download-button-new > .play-download-btn { font-size: 18px; }
}
@media screen and (max-width: 310px) and (min-width: 301px) {
  .sticky-download-button-new > .play-download-btn { font-size: 17px; }
}
@media screen and (max-width: 300px) {
  .sticky-download-button-new > .play-download-btn { font-size: 15px; }
}
