﻿/* Hero */
.hero {
    background-color: #0094ff;
    background: -webkit-linear-gradient(#1f4f72, #1774b8); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#1f4f72, #1774b8); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#1f4f72, #1774b8); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#1f4f72, #15639d); /* Standard syntax */
    color: #FFF;
    padding: 30px 4px;
}
    .hero .hero-icon {
        position: absolute;
        left: 10px;
        top: -9px;
        width: 112px;
        height: 112px;
        background-color: #FFF;
        text-align: center;
        border-radius: 50%;
        display: none;
    }
        .hero .hero-icon img {
            position: absolute;
            width: 100px;
            height: 100px;
            left: 6px;
            top: 6px;
            border-radius: 50%;
        }
    .hero .hero-title {
        font-size: 19px;
        font-weight: 300;
        padding-left: 0;
        padding-top: 0;
        text-align: left;
    }
    .hero .hero-version {
        padding-bottom: 10px;
        font-weight: 300;
        color: #cddeea;
        color: #aacae0;
    }
    .hero .hero-desc {
        font-size: 14px;
        font-weight: 300;
        padding-bottom: 30px;
        padding-left: 0;
        text-align: left;
        padding-top: 0;
    }
    .hero .hero-disclaimer {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.62);
        padding-top: 0;
    }
    .hero .hero-price {
        font-size: 25px;
        padding-bottom: 15px;
        font-weight: 300;
    }
        .hero .hero-price span {
            font-size: 17px;
            font-weight: 300;
        }
    .hero .hero-action {
        margin-bottom: 33px;
    }
        .hero .hero-action button {
            border: 0;
            color: #fff;
            background-color: rgba(140, 196, 236, 0.49);
            padding: 0 12px;
            border-radius: 4px;
            line-height: 32px;
            margin-right: 5px;
            font-size: 14px;
            font-weight: 400;
        }
            .hero .hero-action button:hover {
                background-color: #45a1e2;
            }
        .hero .hero-action button b {
            font-weight: 700;
        }

/* Extension Details */
.extensionDetails {
}
    .extensionDetails .panel {
        display: none;
        padding-top: 40px;
    }
        .extensionDetails .panel h1 {
            font-family: 'Poppins';
            color: #217abd;
            font-weight: 300;
            font-size: 2.2rem;
        }
    .extensionDetails .panel.active {
        display: block;
    }

/* Change Log Panel */
.panel.changeLog h1 {
    padding-bottom: 25px;
}
.panel.changeLog .version-box {
    margin-bottom: 20px;
    /* background-color: #f6f6f6; */
    border-radius: 0;
    padding: 10px 0;
    border-bottom: 1px solid #d7d7d7;
}

/* Screenshot Panel */
.panel.screenshots .screenshot-box {
    margin-bottom: 30px;
    background-color: #f3f3f3;
    border-radius: 5px;
    padding: 18px;
}
    .panel.screenshots .screenshot-box .image img,
    .panel.screenshots .screenshot-box .video video {
        max-width: 100%;
    }
    .panel.screenshots .screenshot-box .title {
        font-size: 20px;
        line-height: 24px;
    }
    .panel.screenshots .screenshot-box .desc {
        font-size: 15px;
        color: #383838;
        font-weight: 300;
        padding-bottom: 18px;
    }

@media (min-width: 768px) {
    .hero .hero-title {
        font-size: 28px;
        font-weight: 200;
        line-height: 32px;
    }
    .hero .hero-version {
        padding-bottom: 15px;
        font-size: 18px;
        font-weight: 300;
    }

    .hero .hero-desc {
        font-size: 16px;
        font-weight: 200;
    }
    .hero .hero-icon {
        display: block;
        top: 60px;
    }
    .hero .mleft {
        margin-left: 150px;
    }
}

.wlversion {
    /* color: red; */
    background-color: #6c7e8d;
    color: #FFF;
    padding: 0;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 7px;
    display: inline-block;
    width: 119px;
    text-align: center;
    line-height: 27px;
    margin-right: 2px;
}

    .wlversion.current {
        background-color: #2c9aee;
    }