.rating {
    text-align: center;
    /* margin-top: 120px; */
    position: relative;
    /* width: 50%; */
    float: left;
}

.rating_details {
    float: right !important;
}

.hidden {
    opacity: 0;
}

.star {
    display: inline-block;
    margin: 0 5px;
    font-size: 16px;
    color: #CCC;
    position: relative;
}
.star.animate {
    -webkit-animation: stretch-bounce 0.5s ease-in-out;
}
.star.hidden {
    opacity: 0;
}

.full:before {
    font-family: fontAwesome;
    display: inline-block;
    content: "";
    position: relative;
    float: right;
    z-index: 2;
}

.half:before {
    font-family: fontAwesome;
    content: "";
    position: absolute;
    float: left;
    z-index: 3;
}

.star-colour {
    color: #be1f2e;
}

@-webkit-keyframes stretch-bounce {
    0% {
        -webkit-transform: scale(1);
    }
    25% {
        -webkit-transform: scale(1.5);
    }
    50% {
        -webkit-transform: scale(0.9);
    }
    75% {
        -webkit-transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
    }
}
.rating .selected:before {
    font-family: fontAwesome;
    display: inline-block;
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
    opacity: 1;
    z-index: 1;
}
.rating .selected.pulse:before {
    -webkit-transform: scale(3);
    opacity: 0;
}
.rating .selected.is-animated:before {
    transition: 1s ease-out;
}

.score {
    font-family: arial;
    font-size: 20px;
    color: green;
    margin-top: 20px;
    margin-left: 50px;
}

.score-rating {
    vertical-align: sup;
    top: -5px;
    position: relative;
    font-size: 150%;
}

.total {
    vertical-align: sub;
    top: 0px;
    position: relative;
    font-size: 100%;
}

.average {
    font-family: arial;
    font-size: 20px;
    color: indianred;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.average .score-average {
    padding-top: 30px;
}

/* ----------Product Image-------------- */


.product_image, .product_image_2{
    height: 70px;
    width: 70px;
    border: 1px solid #CCC;
    float: left;
    background-repeat: no-repeat;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    padding: 10px;
    margin: 5px;
    background-clip: content-box;
    display: flex;
    justify-content: center;
}

.product_image_2 {
    height: 60px !important;
    width: 60px !important;
    padding: 5px !important;
}

/* -------------------------- */

.progress_rounded {
    width: 75px;
    height: 75px;
    line-height: 150px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}
.progress_rounded:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50% !important;
    border: 7px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}
.progress_rounded > span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}
.progress_rounded .progress-left {
    left: 0;
}
.progress_rounded .progress-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 7px;
    border-style: solid;
    position: absolute;
    top: 0;
    border-color: #be1f2e;
}
.progress_rounded .progress-left .progress-bar {
    left: 100%;
    border-top-right-radius: 75px !important;
    border-bottom-right-radius: 75px !important;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}
.progress_rounded .progress-right {
    right: 0;
}
.progress_rounded .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 75px !important;
    border-bottom-left-radius: 75px !important;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}
.progress_rounded .progress-value {
    display: flex !important;
    border-radius: 50% !important;
    font-size: 16px;
    text-align: center !important;
    line-height: 20px;
    align-items: center !important;
    justify-content: center !important;
    height: 100%;
    font-weight: 300;
}
.progress_rounded .progress-value div {
    margin-top: 5px;
    margin-left: 5px !important;
}

/* This for loop creates the 	necessary css animation names
Due to the split circle of progress-left and progress right, we must use the animations on each side.
*/
.progress_rounded[data-percentage="10"] .progress-right .progress-bar {
    animation: loading-1 1.5s linear forwards;
}
.progress_rounded[data-percentage="10"] .progress-left .progress-bar {
    animation: 0;
}

.progress_rounded[data-percentage="20"] .progress-right .progress-bar {
    animation: loading-2 1.5s linear forwards;
}
.progress_rounded[data-percentage="20"] .progress-left .progress-bar {
    animation: 0;
}

.progress_rounded[data-percentage="30"] .progress-right .progress-bar {
    animation: loading-3 1.5s linear forwards;
}
.progress_rounded[data-percentage="30"] .progress-left .progress-bar {
    animation: 0;
}

.progress_rounded[data-percentage="40"] .progress-right .progress-bar {
    animation: loading-4 1.5s linear forwards;
}
.progress_rounded[data-percentage="40"] .progress-left .progress-bar {
    animation: 0;
}

.progress_rounded[data-percentage="50"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}
.progress_rounded[data-percentage="50"] .progress-left .progress-bar {
    animation: 0;
}

.progress_rounded[data-percentage="60"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}
.progress_rounded[data-percentage="60"] .progress-left .progress-bar {
    animation: loading-1 1.5s linear forwards 1.5s;
}

.progress_rounded[data-percentage="70"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}
.progress_rounded[data-percentage="70"] .progress-left .progress-bar {
    animation: loading-2 1.5s linear forwards 1.5s;
}

.progress_rounded[data-percentage="80"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}
.progress_rounded[data-percentage="80"] .progress-left .progress-bar {
    animation: loading-3 1.5s linear forwards 1.5s;
}

.progress_rounded[data-percentage="90"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}
.progress_rounded[data-percentage="90"] .progress-left .progress-bar {
    animation: loading-4 1.5s linear forwards 1.5s;
}

.progress_rounded[data-percentage="100"] .progress-right .progress-bar {
    animation: loading-5 1.5s linear forwards;
}
.progress_rounded[data-percentage="100"] .progress-left .progress-bar {
    animation: loading-5 1.5s linear forwards 1.5s;
}

@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(36);
        transform: rotate(36deg);
    }
}
@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(72);
        transform: rotate(72deg);
    }
}
@keyframes loading-3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(108);
        transform: rotate(108deg);
    }
}
@keyframes loading-4 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(144);
        transform: rotate(144deg);
    }
}
@keyframes loading-5 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180);
        transform: rotate(180deg);
    }
}

/* ------------------------ */

.lightGallery .lightgallery_img {
    background-color: #d7d9df;
    border: 1px solid #ccc;
    height: 80px !important;
    width: 80px !important;
    position: relative;
    /* line-height: 146px; */
    overflow: hidden;
}
.lightGallery .lightgallery_img img,
.lightGallery>div img {
    max-width: 80%;
    max-height: 80%;
}

.lightGallery>div .image-tile {
    height: 80%;
    width: 80%;
    margin-bottom: 0;
    padding: 0;
}

.lightGallery .col-6 {
    position: relative;
}

.lightGallery .input-group-text {
    position: absolute;
    right: 0rem;
    top: 1px;
}

.lightGallery .active {
    border: 1px solid #23af47;
}

.lightGallery .inactive {
    border: 1px solid #1c2c42;
}


.opacity-25{ opacity: .25;}
#groupImageEdit{background-color: #fbfbfb; border: 1px dashed #ccc;}

.responsive-border{
    border-right: 1px solid #1e1e1e;
}
@media (max-width:768px) {
    .responsive-border{
        border-right:none;
    }
}
.newversiontabs .nav-link{
    border: none !important;}

.icons {
    font-size: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.icon {
    display: inline-block;
    width: 40px;
    height: 50px;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    margin: 0 5px;
}
.icon::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-radius: 0 2px;
    transition: all 0.2s linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.icon--pdf {
    background-color: #0000FF;
}

.icon--pdf::after {
    background: linear-gradient(45deg, #78b3e7 50%, #fff 50%);
}
.icon--pdf i::before {
    content: "☵";
}
.icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    font-size: 10px;
    color: #fff;
    font-weight: 500;
}
.icon i::before,
.icon i::after {
    display: block;
    transition: all 0.2s linear;
}
.icon i::before {
    text-align: center;
    font-size: 12px;
    opacity: 0;
    transform: translateY(5px);
}
.icon i::after {
    content: attr(title);
    transform: translateY(-5px);
}
.icon:hover {
    border-radius: 2px 4px 2px 2px;
}
.icon:hover::after {
    width: 12px;
    height: 12px;
}
.icon:hover i::before {
    transform: translateY(0);
    opacity: 1;
}
.icon:hover i::after {
    transform: translateY(0);
}
