
/*Loading Ajax*/
.waiting_for_ajax {
    position: fixed;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9999999999999999999;
    max-height: 100%;
}
.waiting_for_ajax.successPop {
    display: flex;
    justify-content: center;
    align-items: center;
}
.waiting_for_ajax > div {
    opacity: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: #6161618c;
    width: 100%;
    padding: 10px 25px;
    border-radius: 10px;
    margin: auto;
    /*max-width: 300px;*/
}
.waiting_for_ajax.successPop > .successfully, .waiting_for_ajax.successPop > .failed {
    max-height: 200px;
    height: 90%;
    width: 90%;
    max-width: 300px;
    background: #eeeeee;
    box-shadow: 0px 0px 15px #ababab;
    border: 2px solid rgb(244 211 94 / 60%);
}
.waiting_for_ajax img {
    width: 50px;
}
.waiting_for_ajax p {
    font-size: 16px;
    color: #FFF!Important;
    margin-top: 10px;
    height: auto;
    margin-bottom: 0px;
}
.waiting_for_ajax.successPop p {
    color: #000!important;
}
#rotate-image {
    -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

/*CSS*/

.Open-rating-stars {
    width: 100%;
    margin: auto;
    position: relative;
    padding: 20px 0px;
    background: #FBFBFB;
    border: 2px solid #F4D35E;
    box-shadow: 0px 3px 35px rgb(0 0 0 / 8%);
    border-radius: 15px;
    max-width: 500px;
    height: 275px;
}
.Open-rating-stars button.mfp-close {
    display: none;
}
.vote-successfully {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vote-successfully img {
    height: 70px;
    width: auto!important;
    max-width: unset;
    margin-bottom: 10px;
    margin-top: 5px;
}
.vote-successfully .rating-stars {
    display: flex;
    justify-content: space-between;
    width: 130px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 5px;
}
.vote-successfully .rating-stars span {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-size: 100% 100%;
}
.vote-successfully .averageScore {
    position: relative;
    top: 8px;
}
.vote-successfully .total-score {
    display: flex;
}
.vote-successfully .total-score > * {
    margin-left: 10px;
    margin-right: 10px;
}
.vote-successfully .averageScore .font-size-35 {
    font-size: 40px!important;
}
.vote-successfully .averageScore span.font-size-16 {
    font-size: 16px!important;
    font-weight: 500;
}
.vote-successfully .total-score .rating-stars {
    margin-bottom: 10px;
}
.vote-successfully .total-score .ave_rat {
    position: relative;
    top: -7px;
}
.rating-stars.vote-trigger {
    position: relative;
    cursor: pointer;
}
.rating-stars.vote-trigger .vote-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    width: 245px;
    background: #fff;
    border: 1px #a8a8a8 solid;
    border-radius: 5px;
    z-index: 10;
}
.brand-item.td-row > div:last-child .vote-trigger .vote-tooltip {
    right: 0;
}

.rating-stars.vote-trigger:hover .vote-tooltip {
    display: block!important;
}
.rating-stars.vote-trigger .vote-tooltip > div{
    position: relative;
    padding: 4px;
}
.rating-stars.vote-trigger .vote-tooltip > div:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #979797;
    top: 100%;
    left: 10px;
}
.brand-item.td-row > div:last-child .vote-trigger .vote-tooltip > div:before {
    left: unset;
    right: 40px;
}