/* Reset */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    font-family: 'Roboto', sans-serif;
}

/* Main Wrapper */
.main_container {
    background: #fff;
    max-width: 450px;
    margin: auto;
    padding: 15px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #5f6368;
    font-size: 1.12rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin: 0 10px;
}

/* Coin */
.coin {
    display: flex;
    padding: 0 10px;
}
.coin div {
    padding: 0 10px;
}
.coin div:last-child {
    padding-right: 0;
}

/* App Details */
.mx-details {
    padding-left: 12px;
}
.mx-details h2 {
    font-weight: 500;
    font-size: 21px;
    margin-bottom: 6px;
}
.mx-details h3 {
    color: #01875f;
    font-size: 16px;
    font-weight: 500;
}
.mx-details p {
    color: #5f6368;
    font-size: 12px;
    margin: 6px 0 12px;
}

/* App Icon */
.logoapp {
    width: 70px;
    height: 70px;
    box-shadow: 0 1px 1px rgba(60,64,67,.3),
                0 1px 3px 1px rgba(60,64,67,.15);
    border-radius: 10px;
}
.logoapp img {
    width: 100%;
}

/* Rating */
.ratingdwon {
    font-size: 14px;
    color: #202124;
}
.ratingdwon .smalltxt {
    font-size: 12px;
    color: #5f6368;
}

/* INSTALL BUTTON — New Premium Style */
@keyframes installPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(11,86,209,0.4);
        background-color: #0b56d1;
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 12px rgba(30,115,255,0.6);
        background-color: #1e73ff;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(11,86,209,0.4);
        background-color: #0b56d1;
    }
}

a.install {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 12px auto;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .5px;

    animation: installPulse 1.4s infinite ease-in-out;
}

/* Other Links */
.share {
    color: #01875f;
    text-decoration: none;
    font-size: 14px;
}
.addwish {
    color: #9aa0a6;
    text-decoration: none;
    font-size: 14px;
}
.desktopnot {
    font-size: 14px;
    color: #5f6368;
}

/* About App */
.aboutapp h2 {
    color: #202124;
    font-size: 18px;
}
.aboutapp h4 {
    color: #202124;
    font-size: 14px;
}
.aboutapp p {
    color: #5f6368;
    font-size: 14px;
}
.aboutapp a {
    color: #5f6368;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #5f6368;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 50px;
    margin: 8px 0;
    display: inline-block;
}

.textinner {
    font-size: 14px;
    font-weight: 500;
}
.textinner a {
    color: #5f6368;
    font-size: 12px;
    font-weight: 400;
}
.textinner span {
    color: #5f6368;
    font-size: 12px;
    font-weight: 400;
}

/* Card Box */
.main-box {
    border-radius: 8px;
    border: 1px solid #dadce0;
    margin-top: 30px;
    padding: 20px 20px 0;
}

/* See Details */
.seedetails {
    color: #01875f !important;
    font-weight: 500 !important;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 480px) {
    .main_container {
        padding: 10px;
    }

    a.install {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .logoapp {
        width: 60px;
        height: 60px;
    }

    .mx-details h2 {
        font-size: 18px;
    }
}
