@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
}

.container {
    width: 100%;
    max-width: 1240px;
    padding: 0 24px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
}

ul {
    list-style: none;
}

.m-50 {
    margin: 50px 0;
}

/* header --------------------------- */
.hedaer {
    width: 100%;
    padding: 8px 0;
}

.hedaer .logo {
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 600;
    color: #5f6368;
}

.hedaer .logo img {
    max-width: 40px;
}

/* banner section ----------------------------------------- */
.banner-section .banner-div {
    position: relative;
}

.banner-div .left-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.banner-div .left-content .main-title {
    font-size: 56px;
    font-weight: 600;
    color: #202124;
}

.left-content .company-name {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #01875f;
    margin-top: 16px;
}

.banner-div .tags {
    display: flex;
    align-items: center;
}

.banner-div .tags span {
    font-size: 12px;
    font-weight: 400;
    color: #5f6368;
    line-height: 16px;
}

.banner-div .tags span:first-child::after {
    content: '·';
    margin: 0 3px;
}

.banner-div .review-part {
    display: flex;
    align-items: center;
    margin: 36px 0;
}

.banner-div .review-part li {
    padding: 0 24px;
    text-align: center;
    position: relative;
}

.banner-div .review-part li::after {
    content: '';
    width: 1px;
    height: 24px;
    background-color: #e8eaed;
    position: absolute;
    top: 10%;
    right: 0;
}

.review-part li:last-child::after {
    display: none;
}

.review-part li:first-child {
    padding-left: 0;
}

.review-part li h2,
.review-part li p {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    line-height: 15px;
}

.review-part li p {
    font-size: 12px;
    font-weight: 400;
    color: #5f6368;
}

.review-part li h2 {
    margin-bottom: 4px;
    font-weight: 600;
}

.review-part li h2.box {
    display: inline-block;
    border: 1px solid #202124;
    padding: 1px;
}

.review-part li h2 i {
    font-size: 12px;
}

.banner-div .share-div {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    max-width: inherit;
}
.banner-div .share-link:hover .heateor_sss_sharing_container{
    opacity: 1;
}
.share-div .heateor_sss_sharing_container{
    position: absolute;
    left: 20%;
    top: 40px;
    background-color: #ffffff;
    box-shadow: 0 0 14px 0px #00000045;
    padding: 5px;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.5s;
}
.heateor_sss_sharing_container::after{
    position: absolute;
    content: "\f0d8";
    top: -8px;
    left: 10px;
    color: #ffffff;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    z-index: 10;
}
.heateor_sss_sharing_container .heateor_sss_sharing_ul a span{
    height: 28px !important;
    width: 28px !important;
}
.share-div .theme-button {
    min-width: 200px;
    font-size: 16px;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    background-color: #01875f;
    text-align: center;
    transition: .3s;
}

.share-div .theme-button:hover {
    background-color: #056449;
    box-shadow: 0 1px 2px #7c7c7caf;
}

.share-div .share-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #01875f;
    padding: 10px 0;
}

.share-div .share-link svg {
    fill: #01875f;
}

.banner-div .device {
    font-size: 14px;
    font-weight: 500;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-div .image {
    width: 240px;
    height: 240px;
    border-radius: 20%;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    flex-shrink: 0;
}

.banner-div .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* app description section ----------------------------------------------------- */
.app-description-section .flex-div {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.app-description-section .flex-div .left-col {
    width: 70%;
    flex-shrink: 0;
}

.app-description-section .flex-div .right-col {
    width: 30%;
    flex-shrink: 0;
}

.common-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    color: #202124;
    margin-bottom: 10px;
}

.common-title i {
    font-size: 16px;
    color: #5f6368;
    padding: 12px;
    cursor: pointer;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.common-title i:hover {
    background-color: #F5F5F5;
}

.description {
    font-size: 14px;
    color: #5f6368;
}

.support-div .list .list-item {
    display: flex;
    gap: 16px;
    padding: 12px;
    border-radius: 8px;
    transition: .5s;
}

.support-div .list a:hover {
    background-color: #F5F5F5;
}

.list .list-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: #202124;
    line-height: 12px;
    margin-bottom: 3px;
}

.list .list-item i,
.list .list-item p {
    font-size: 14px;
    color: #5f6368;
}

.support-div .about-developer h2 {
    font-size: 14px;
    font-weight: 600;
    color: #202124;
    padding: 10px 0 5px 0;
}

.support-div .about-developer p {
    font-size: 14px;
    color: #5f6368;
}

.support-div .content {
    display: none;
}

.support-div .show+.content {
    display: block;
}

.support-div .show i {
    transform: rotate(180deg);
}

.left-col .app-info {
    margin: 20px 0;
}

.app-info .description {
    margin: 20px 0;
}

.app-info .update-date h3 {
    font-size: 14px;
    color: #202124;
    font-weight: 600;
}

.app-info .update-date p {
    font-size: 14px;
    color: #5f6368;
    margin-top: 4px;
}

.app-info .tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.app-info .tags li {
    display: inline-block;
    font-size: 14px;
    color: #5f6368;
    font-weight: 600;
    padding: 0 15px;
    line-height: 30px;
    border: 1px solid #dadce0;
    cursor: pointer;
    border-radius: 50px;
    transition: .5s;
}

.app-info .tags li:hover {
    background-color: #F5F5F5;
    color: #202124;
}

.data-safety .data-detail {
    border: 1px solid rgb(218, 220, 224);
    border-radius: 8px;
    margin: 30px 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.data-detail li {
    display: flex;
    gap: 20px;
}

.data-detail li img {
    max-width: 20px;
    height: auto;
}


.data-detail li h3 {
    font-size: 14px;
    color: #5f6368;
    font-weight: 600;
}

.data-detail li p {
    font-size: 12px;
    color: #5f6368;
    font-weight: 500;
}

.data-detail .link {
    font-size: 14px;
    color: #01875f;
    font-weight: 600;
    padding: 10px;
    border-radius: 3px;
    transition: .5s;
}

.data-detail .link:hover {
    background-color: #F6FAFE;
    color: #056449;
}

.rating-section .main-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.rating-section .main-title .link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #5f6368;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    transition: .5s;
}

.rating-section .main-title .link:hover {
    background-color: #F9F9F9;
    color: #202124;
}

.rating-section .tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 10px 0;
}

.rating-section .tags li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #5f6368;
    font-weight: 600;
    padding: 0 15px;
    line-height: 30px;
    border: 1px solid #dadce0;
    cursor: pointer;
    border-radius: 50px;
    transition: .5s;
}

.rating-section .tags li:hover {
    background-color: #F5F5F5;
}

.rating-section .tags li.active {
    background-color: #e6f3ef;
    color: #056449;
    border-color: transparent;
}

.rating-section .review-point {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin: 24px 0;
}

.review-point .point h2 {
    font-size: 56px;
    font-weight: 500;
    color: #202124;
}

.review-point .star {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 10px 0;
}

.review-point .star i {
    font-size: 13px;
    color: rgb(241, 243, 244);
}

.review-point .star .active {
    color: #01875f;
}

.review-point .point p {
    font-size: 12px;
    color: #5f6368;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.review-point .progress-line {
    width: 100%;
}

.review-point .progress-line li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    line-height: 15px;
    color: #5f6368;
    font-weight: 500;
}

.review-point .progress-line .progress-div {
    width: 100%;
    height: 10px;
    border-radius: 50px;
    background-color: rgb(232, 234, 237);
    overflow: hidden;
}

.progress-line .progress-div span {
    display: block;
    width: 50%;
    height: 100%;
    border-radius: 50px;
    background-color: #01875f;
}

.review-section {
    margin: 24px 0;
}

.review-section li .review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.review-head .name {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-head .name img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

.review-head .name h3 {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
}

.review-head .icon {
    width: 48px;
    height: 48px;
    font-size: 16px;
    color: #5f6368;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    ;

}

.review-head .icon:hover {
    background-color: #F5F5F5;
}

.review-section>li {
    padding: 24px 0;
}

.review-section li .rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 10px 0;
}

.rating .sta {
    line-height: 0;
}

.rating .star i {
    font-size: 9px;
    color: rgb(241, 243, 244);
}

.rating .star .active {
    color: #01875f;
}

.review-section .rating p {
    font-size: 12px;
    color: #5f6368;
    font-weight: 500;
}

.review-section .description {
    font-size: 14px;
    margin: 10px 0;
}

.review-section .helpful {
    font-size: 12px;
    color: #5f6368;
    font-weight: 500;
    margin-top: 16px;
}

.review-section .find-helpful {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}

.review-section .find-helpful p {
    font-size: 12px;
    color: #5f6368;
    font-weight: 500;
}

.find-helpful .buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.find-helpful .buttons .btn {
    font-size: 14px;
    color: #5f6368;
    font-weight: 600;
    padding: 0 15px;
    line-height: 23px;
    border-radius: 50px;
    border: 1px solid #dadce0;
    transition: .5s;
}

.find-helpful .buttons .btn:hover {
    background-color: #F5F5F5;
}

.review-section .replay-div {
    margin: 24px 24px 0;
    padding: 12px 16px 16px;
    background-color: rgb(248, 249, 250);
}

.replay-div .head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.replay-div .head h2 {
    font-size: 14px;
    font-weight: 600;
    color: #202124;
}

.replay-div .head p {
    font-size: 12px;
    font-weight: 500;
    color: #5f6368;
}

.replay-div .description {
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 0;
}

.review-section .review-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #01875f;
    padding: 12px 8px;
    border-radius: 6px;
    transition: .4s;
}

.review-section .review-link:hover {
    background-color: #F6FAFE;
    color: #056449;
}

.left-col .whats-new-section {
    margin: 24px 0;
}

.whats-new-section .description ul {
    list-style: disc;
    padding-left: 20px;
    margin: 20px 0;
}

.whats-new-section .description p {
    margin: 10px 0;
}

.app-description-section .appropriate-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #202124;
    font-weight: 600;
    margin: 24px 0;
}

.app-description-section .appropriate-link i {
    font-size: 16px;
    color: #5f6368;
}

.slider-section .swiper {
    width: 100%;
    height: 100%;
}

.slider-section .swiper-slide {
    min-height: 295px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    cursor: pointer;
    border-radius: 20px;
}
.left-col .slider-section {
    max-height: 300px;
    position: relative;
}

.slider-section .swiper-button-next,
.slider-section .swiper-button-prev {
    font-size: 20px;
    color: #5f6368;
    width: 56px;
    height: 56px;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 #3c40434d, 0 1px 3px 1px #3c404326;
    border-radius: 50%;
    transition: .5s;

    &:hover {
        background-color: #F7F8F8;
        box-shadow: 0 2px 10px #3c40434d;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.slider-section .swiper-button-next.swiper-button-disabled,
.slider-section .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

.slider-section .swiper-button-next {
    right: -30px;
}

.slider-section .swiper-button-prev {
    left: -30px;
}

/* fancybox slider ---------------------- */
.f-carousel__toolbar.is-absolute {
    position: static !important;
    background-color: #202124;
}

.f-thumbs {
    display: none !important;
}

.fancybox__viewport {
    padding: 40px 0 !important;
}

.f-button.is-arrow {
    width: 48px;
    height: 48px;
    background-color: #fff !important;
    box-shadow: 0 1px 2px 0 #3c40434d, 0 1px 3px 1px #3c404326;
    transition: .5s;
}

.f-button.is-arrow :hover {
    background-color: #e3e3e3 !important;
    box-shadow: 0 2px 10px #3c40434d;
}

.f-button.is-arrow svg {
    max-width: 20px;
    stroke: #202124 !important;
}

.f-carousel__toolbar__column.is-right button {
    background-color: transparent !important;
}

.fancybox__container {
    --fancybox-backdrop-bg: #000000b3 !important;
}

/* review popup ------------------------------------------------------ */

.review-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    inset: 0;
    background-color: #000000b3;
    display: none;
    align-items: center;
    justify-content: center;
}
.review-popup.show{
    display: flex;
}
.review-popup .review-box {
    width: 100%;
    max-width: 720px;
    height: 76vh;
    max-height: 720px;
    margin: 20px;
    overflow: auto;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, .3), 0 4px 8px 3px rgba(60, 64, 67, .15);
    background-color: #ffffff;
}

.review-box::-webkit-scrollbar {
    width: 0;
}

.review-box .popup-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 24px;
    background-color: #fff;
    z-index: 99;
}

.review-box .popup-head.sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 2px 6px 2px rgba(60, 64, 67, .15);
}

.review-box .popup-head .app-image {
    display: flex;
    gap: 16px;
}

.app-image .image {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, .09), 0 3px 5px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .3), 0 1px 3px rgba(0, 0, 0, .15);
    flex-shrink: 0;
    overflow: hidden;
}

.app-image .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-image .title h2 {
    font-size: 22px;
    color: #202124;
    font-weight: 600;
}

.app-image .title p {
    font-size: 14px;
    color: #5f6368;
    font-weight: 500;
    line-height: 28px;
}

.popup-head .close-icon {
    font-size: 20px;
    color: #5f6368;
    padding: 12px;
    cursor: pointer;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.popup-head .close-icon:hover {
    background-color: #F5F5F5;
}

.review-box .popup-body {
    padding: 0 20px 20px;
}

.review-box .fliter-div .tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.fliter-div .tags .tag {
    font-size: 14px;
    color: #5f6368;
    font-weight: 600;
    border: 1px solid #dadce0;
    border-radius: 50px;
    padding: 5px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: .5s;
}
.fliter-div .tags .tag span{
    display: flex;
    gap: 12px;
    align-items: center;
}
.fliter-div .tags .tag:hover {
    background-color: #F5F5F5;
}

.fliter-div .tags li {
    position: relative;
}

.fliter-div .tags .tag.active {
    border-color: transparent;
    color: #056449;
    background-color: #e6f3ef;
}

.fliter-div .tags .tag.open~.drop-down {
    display: block;
}

.fliter-div .tags .drop-down {
    position: absolute;
    top: 100%;
    left: 0;
    width: 192px;
    padding: 16px 0;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12), 0px 5px 5px -3px rgba(0, 0, 0, .2);
    z-index: 999;
    display: none;
}

.fliter-div .tags .drop-down li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #5f6368;
    font-weight: 600;
    transition: .5s;
}

.fliter-div .tags .drop-down li:hover {
    background-color: #F5F5F5;
}

.fliter-div .tags .drop-down .option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fliter-div .tags .drop-down .option i {
    width: 20px;
}

.drop-down>li .icon {
    opacity: 0;
}

.drop-down .active-option .icon {
    opacity: 1;
}

.popup-body .review-section {
    margin: 0;
}

.popup-body .review-section>li {
    padding: 20px 0;
    border-bottom: 1px solid #dadce0;
}

.popup-body .review-section>li:last-child {
    border-bottom: none;
}

.popup-body .review-section .replay-div {
    margin: 20px 0 0 24px;
}