body {
    user-select: none;
    background-color: #FFFFFF;
}

.appicon {
    /* border-radius: 15px; */
    box-shadow: 1px 1px 5px #909090;
}

.appcredit {
    color: #01875F;
    cursor: pointer;
}

.game-pics {
    margin-top: 20px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}

.game-pics::-webkit-scrollbar {
    display: none;
}

.game-pics img {
    border-radius: 8px;
    width: 35%;
    display: inline-block;
    margin: 3px;
}

/* .game-pics img {
    border-radius: 8px;
}

.game-pics::-webkit-scrollbar {
    display: none;
} */

.education {
    border: 1px solid #909090;
}

.usericon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FAFAFA;
}

.usericon1 {
    background-color: #AD45BD;
}

.usericon2 {
    background-color: #00559C;
}

.usericon3 {
    background-color: #F75119;
}

.star-bar {
    height: 10px;
    border-radius: 5px;
}

.star5green {
    background-color: #01875F;
    width: 50%;
}

.star4green {
    background-color: #01875F;
    width: 20%;
}

.star3green {
    background-color: #01875F;
    width: 10%;
}

.star1green {
    background-color: #01875F;
    width: 3%;
}


.data-safety-section {
    margin-top: 20px;
}

.data-safety-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.data-safety-description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

.data-safety-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
}

.data-safety-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.data-safety-item i {
    font-size: 20px;
    color: #666666;
    margin-right: 10px;
}

.data-safety-item:last-child {
    margin-bottom: 0;
}


.footer div {
    flex: 1;
}

.footer i {
    display: block;
    margin-bottom: 0px;
}

.footer p {
    font-size: 14px;
}



/* ===========================
   PWA Progress Ring
=========================== */

.icon-wrapper{
    position:relative;
    width:90px;
    height:90px;
    display:flex;
    justify-content:center;
    align-items:center;
}



.progress-ring{
    position:absolute;
    width:90px;
    height:90px;
    transform:rotate(-90deg);
    z-index:1;
}

.progress-bg{
    fill:none;
    stroke:#E5E5E5;
    stroke-width:4;
}

.progress-bar{
    fill:none;
    stroke:#34A853;
    stroke-width:4;
    stroke-linecap:round;

    stroke-dasharray:251.2;
    stroke-dashoffset:251.2;

    transition:stroke-dashoffset .15s linear;
}

/* Button */

#installBtn:disabled{
    opacity:.8;
    cursor:not-allowed;
}

.installing{
    background:#34A853 !important;
    border-color:#34A853 !important;
    color:#fff;
}

#percent{
    display:none;
    margin-left:8px;
    font-weight:600;
    font-size:13px;
}



/* =========================
   APP ICON + PROGRESS RING
========================= */

.icon-wrapper{

    position:relative;

    width:90px;

    height:90px;

    flex-shrink:0;

}

/* SVG Ring */

.progress-ring{

    position:absolute;

    top:0;

    left:0;

    width:90px;

    height:90px;

    transform:rotate(-90deg);

    z-index:3;

    pointer-events:none;
    display: none;

}

/* Background Circle */

.progress-bg{

    fill:none;

    stroke:#e9e9e9;

    stroke-width:4;

}

/* Green Progress */

.progress-bar{

    fill:none;

    stroke:#16c46b;

    stroke-width:3;

    stroke-linecap:round;

    stroke-dasharray:251.2;

    stroke-dashoffset:251.2;

    transition:stroke-dashoffset .1s linear;

}

/* App Icon */

.appicon{

    position:absolute;

    top:50%;

    left:50%;

    width:75px;

    height:75px;

    transform:translate(-50%,-50%) scale(1);

    border-radius:18px;

    object-fit:cover;

    transition:all .35s ease;

    z-index:2;

}

/* Installing */

.appicon.installing{

    transform:translate(-50%,-50%) scale(.82);
    box-shadow: none;

}