/**
* soldcounter
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
*
*  @category  FMM Modules
*  @package   soldcounter
*  @author    FME Modules
*  @copyright 2020 FME Modules All right reserved
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/

.sc-clicked {
    outline: rgb(130, 180, 255) 3px solid;
}

.sc-active {
    outline: rgb(130, 180, 255) 3px solid;
}

.sc-btn-padding {
    margin: 6px;
}

.sc-btn-padding input[type=checkbox]:checked {
    display: none;
}

.sc-icon {
    display: inline-block;
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
}

.sc-wrapper {
    width: 100%;
    text-align: center;
    margin: auto;
    align-items: center;
    align-self: center;
}

.sc-progress-bar {
    width: 70%;
    background-color: #e0e0e0;
    border-radius: 3px;
}

.sc-progress-bar-fill {

    display: block;
    height: 22px;
    background-color: #FFA07A;
    border-radius: 3px;

    transition: width 500ms ease-in-out;
}

.sc-home {
    font-size: 12px;
    margin-top: -24px;
    display: table-row;
    background-color: #FFA07A;
    width: auto;
    padding: 2px;
    padding-left: 10px;
    color: #ffffff;
    float: right;
    font-weight: bolder;
    border-radius: 1px;
    text-align: end;
}

.sc-pd {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    /* max-width: 50%; */
    /* border-radius: 50px; */
    margin: 0 0 5px 0;
    /* border: red 2px solid;  */
    /* clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%); */
}

.product-prices .sc-pd div {
    margin-bottom: 0px;
}

.sc-icon-fo {
    vertical-align: text-bottom;
}



.sc-font-color-animation {
    animation: sc-anim 5s infinite;
}

.sc-d-inline{
    display: inline;
}

.sc-bold {
    font-weight: bolder;
}


.sc-sold-amount {
    font-weight: bold;
}

#sc-icon-size {
    display: none;
}

@keyframes sc-anim {
    0% {
        color: red;
    }

    20% {
        color: cyan;
    }

    30% {
        color: yellow;
    }

    40% {
        color: white;
    }

    50% {
        color: green;
    }

    60% {
        color: blue;
    }

    70% {
        color: blueviolet;
    }

    100% {
        color: orangered;
    }
}


@media(max-width: 1000px) {
    .sc-pd {
        max-width: 100%;
    }
}