HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: /home4/cca63905/public_html/nueva/modules/pmproductvideoreviews/views/scss/front/progress.scss
/**
 * rec.reviews
 *
 * @author    Presta-Module.com <support@presta-module.com> - https://www.presta-module.com
 * @copyright Presta-Module - https://www.presta-module.com
 * @license   see file: LICENSE.txt
 *
 *           ____     __  __
 *          |  _ \   |  \/  |
 *          | |_) |  | |\/| |
 *          |  __/   | |  | |
 *          |_|      |_|  |_|
 */

#pvr {
    .progress {
        width: 150px;
        height: 150px;
        background: none;
        position: relative;
        margin-left: auto;
        margin-right: auto;

        &::after {
            content: "";
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 6px solid #eee;
            position: absolute;
            top: 0;
            left: 0;
        }

        &  > span {
            width: 50%;
            height: 100%;
            overflow: hidden;
            position: absolute;
            top: 0;
            z-index: 1;
        }

        .progress-left {
            left: 0;

            .progress-bar {
                left: 100%;
                border-top-right-radius: 80px;
                border-bottom-right-radius: 80px;
                border-left: 0;
                -webkit-transform-origin: center left;
                transform-origin: center left;
            }
        }

        .progress-bar {
            width: 100%;
            height: 100%;
            background: none;
            border-width: 6px;
            border-style: solid;
            position: absolute;
            top: 0;
        }

        .progress-right {
            right: 0;

            .progress-bar {
                left: -100%;
                border-top-left-radius: 80px;
                border-bottom-left-radius: 80px;
                border-right: 0;
                -webkit-transform-origin: center right;
                transform-origin: center right;
            }
        }

        .progress-value {
            width: 90%;
            height: 90%;
            border-radius: 50%;
            background: transparent;
            font-size: 24px;
            color: black;
            line-height: 15px;
            text-align: center;
            position: absolute;
            vertical-align: middle;
            top: 5%;
            left: 5%;
        }
    }

    .progress-stars {
        color: #f4c765 !important;
        font-size: 25px;
    }

    .progress-stars-empty {
        color: lightgrey !important;
        font-size: 25px;
    }

    .pm-progress-rating {
        margin-top: 35%;
    }

    .sortby-label {
        margin-top: 5px;
    }

    .progress-bar {
        display: block;
        height: 100%;
        background-color: #f4c765;
        background-size: 300% 100%;
        animation: progress-animation 2s linear infinite;
    }
}