﻿.stars-outer {
    position: relative;
    display: inline-block;
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
}

.stars-outer::before {
    content: '\f005 \f005 \f005 \f005 \f005';
    font-weight: 900;
    font-family: 'FontAwesome';
    color: #ccc;
}

.stars-inner::before {
    content: '\f005 \f005 \f005 \f005 \f005';
    font-weight: 900;
    font-family: 'FontAwesome';
    color: #f8ce0b;
}

@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

fieldset, label {
    margin: 0;
    padding: 0;
}
/****** Style Star Rating Widget *****/

.rating {
    border: none;
    float: left;
}

    .rating > input {
        display: none;
    }

    .rating > label:before {
        margin: 5px;
        font-size: 1.25em;
        font-family: FontAwesome;
        display: inline-block;
        content: "\f005";
    }

    .rating > .half:before {
        content: "\f089";
        position: absolute;
    }

    .rating > label {
        color: #ddd;
        float: right;
    }

    /***** CSS Magic to Highlight Stars on Hover *****/

    .rating > input:checked ~ label, /* show gold star when clicked */
    .rating:not(:checked) > label:hover, /* hover current star */
    .rating:not(:checked) > label:hover ~ label {
        color: #FFD700;
    }
        /* hover previous stars in list */

        .rating > input:checked + label:hover, /* hover current star when changing rating */
        .rating > input:checked ~ label:hover,
        .rating > label:hover ~ input:checked ~ label, /* lighten current selection */
        .rating > input:checked ~ label:hover ~ label {
            color: #FFED85;
        }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


.show-loading .cartInfo {
    min-height: 40px;
}

    .show-loading .cartInfo .loading {
        position: absolute;
        left: 0;
        top: 0;
        background-color: red;
        width: 100%;
        height: 100%;
    }

/*#cart:hover~.cartInfo,
.cartInfo:hover {
    display: block
}*/

.WB-qnt {
    position: relative;
    width: 35px;
    transition: all 0.3s;
    display: inline-block;
    padding: 0px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.show-loading.WB-qnt,
.show-loading.addToCart span,
.show-loading.addToCart span:after {
    font-size: 0;
}

.WB-qnt:after,
.WB-qnt:before {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: all 0.3s;
}

.show-loading.WB-qnt:after,
.show-loading.WB-qnt:before {
    opacity: 1;
}

.WB-qnt {
    background: none;
    text-align: center;
}

.show-loading.WB-qnt {
    background: url('/desktopmodules/NB_Store/img/Spin.gif') no-repeat;
    background-position: center;
    background-size: contain;
}

.WB-qnt:before {
    z-index: 100;
    animation: spin 1s infinite;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*Wishlist*/
.large-font {
    font-size: xx-large;
}

ion-icon.active {
    animation: like 0.5s 1;
    fill: red;
    stroke: none;
}

ion-icon {
    fill: transparent;
    stroke: gray;
    stroke-width: 20;
    transition: all 0.5s;
}


@-webkit-keyframes like {
    0% {
        transform: scale(1);
    }

    90% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1.1);
    }
}

/* ---------------- NOT FOUND ---------------- */

.productList_Notfound {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 3rem;
}

.productList_Notfound img {
    max-width: 90%;
}

.productList_Notfound p {
    margin-bottom: 24px;
    font-size: 16px;
    color: #7E7E7E;
}

.productList_Notfound a {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #A3A3A3;
    background-color: #F2F2F2;
    color: #393939;
    font-size: 16px;
    transition: 0.4s;
}
.productList_Notfound a:hover {
    background-color: #e0e0e0;
}
/* ------------------------------------------- */