/* review */
.hover_butt {
    background-color: #ffffff;
    transition: all .3s ease-out;
}

.hover_butt:hover {
    background-color: #eeeeee;
    transition: all .3s ease-out;
}

.review_icon i {
    color: #ffd139;
}

.review_icon p {
    font-size: 15px;
}

.review_icon div {
    user-select: none;
    font-size: 17px;
}

.cssProgress {
    width: 100%;
    margin-bottom: 5px;
}

.cssProgress .progress1,
.cssProgress .progress2,
.cssProgress .progress3 {
    position: relative;
    overflow: hidden;
    width: 140px;
    height: 10px;
    font-family: "Roboto", sans-serif;
}

.cssProgress .cssProgress-bar {
    display: block;
    float: left;
    width: 0%;
    height: 100%;
    background: #3798d9;
    box-shadow: inset 0px -1px 2px #0000001a;
    transition: width 0.8s ease-in-out;
}

.cssProgress .cssProgress-label {
    position: absolute;
    overflow: hidden;
    left: 0px;
    right: 0px;
    color: #00000099;
    font-size: 0.7em;
    text-align: center;
    text-shadow: 0px 1px #0000004d;
}

.cssProgress .cssProgress-bar {
    background-color: var(--c6) !important;
}

.cssProgress .cssProgress-right {
    float: right !important;
}

.cssProgress .cssProgress-label-left {
    margin-left: 10px;
    text-align: left !important;
}

.cssProgress .cssProgress-label-right {
    margin-right: 10px;
    text-align: right !important;
}

.cssProgress .cssProgress-label2 {
    display: block;
    margin: 2px 0;
    padding: 0 8px;
    font-size: 0.8em;
}

.cssProgress .cssProgress-label2.cssProgress-label2-right {
    text-align: right;
}

.cssProgress .cssProgress-label2.cssProgress-label2-center {
    text-align: center;
}

.cssProgress .cssProgress-stripes,
.cssProgress .cssProgress-active,
.cssProgress .cssProgress-active-right {
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.125) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.125) 50%, rgba(255, 255, 255, 0.125) 75%, transparent 75%, transparent);
    background-size: 35px 35px;
}

.cssProgress .cssProgress-active {
    -webkit-animation: cssProgressActive 2s linear infinite;
    animation: cssProgressActive 2s linear infinite;
}

.cssProgress .cssProgress-active-right {
    -webkit-animation: cssProgressActiveRight 2s linear infinite;
    animation: cssProgressActiveRight 2s linear infinite;
}

@-webkit-keyframes cssProgressActive {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 35px 35px;
    }
}

@keyframes cssProgressActive {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 35px 35px;
    }
}

@-webkit-keyframes cssProgressActiveRight {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -35px -35px;
    }
}

@keyframes cssProgressActiveRight {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -35px -35px;
    }
}

/* -----------------------------------------------------
	Progress Bar 2
-------------------------------------------------------- */
.progress2 {
    background-color: #EEE;
    border-radius: 9px;
    /* box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2); */
}

.progress2 .cssProgress-bar {
    height: 100%;
    border-radius: 9px;
}

.progress2 .cssProgress-label {
    line-height: 18px;
}

.intro_h {
    font-size: 20px;
}

@keyframes looxBounce {
    0% {
        transform: scale(1) rotate(0deg);
    }

    10% {
        transform: scale(1.2) rotate(-10deg);
    }

    20% {
        transform: scale(1.2) rotate(10deg);
    }

    30% {
        transform: scale(1.1) rotate(-8deg);
    }

    40% {
        transform: scale(1.1) rotate(8deg);
    }

    50% {
        transform: scale(1.05) rotate(-5deg);
    }

    60% {
        transform: scale(1.05) rotate(5deg);
    }

    70% {
        transform: scale(1.02) rotate(-2deg);
    }

    80% {
        transform: scale(1.02) rotate(2deg);
    }

    90% {
        transform: scale(1.01) rotate(0deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.loox-wiggle i {
    animation: looxBounce 1s ease-in-out;
    cursor: pointer;
}

.loox_wiggle_parent p {
    cursor: pointer;
}

.loox-wiggle .bi-star-fill {
    color: #ffd139;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.loox-wiggle i {
    animation: wiggle 0.5s ease-in-out;
    animation-delay: calc(var(--i) * 0.05s);
}

.review_parent {
    column-count: 2;
    column-gap: 15px;
}

@media (min-width: 768px) {
    .review_parent {
        column-count: 4;
    }
}

.review_parent a {
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
    background-color: #f0f0f0;
    overflow: hidden;
    border-radius: 5px;
    transition: all .5s ease-out;
}

.review_parent a:hover {
    background-color: #e6e6e6;
    transition: all .5s ease-out;
}

.review_parent a {
    color: #000000;
}

.review_parent img {
    width: 100%;
    height: auto;
    display: block;
}

.rat_star {
    gap: 2px;
}

/* Star Fill Style */
.bi-star-fill,
.bi-star {
    color: #f5a623 !important;
    font-size: 15px;
}

/* Slide Animation */
.page {
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.page.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.page.page-1 {
    padding: 70px 0;
}

.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.slide-in-right {
    transform: translateX(100%);
}

.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

.slide-in-left {
    transform: translateX(-100%);
}

.page-2.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.back_butt {
    background-color: transparent;
    color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.back_butt i {
    font-size: 30px;
    display: flex;
    align-items: center;
}

#reviewModal input,
#reviewModal textarea {
    padding: 6px 12px;
    border-radius: 0.375rem;
    border: 1px solid #aaaaaa;
}

#reviewModal input {
    height: 35px;
}

#reviewModal input[type="file"] {
    font-size: 13px;
    height: 40px;
}

#reviewModal textarea {
    height: 60px;
}

#reviewModal :placeholder-shown {
    font-size: 13px;
    color: #eeeeee;
}

#reviewModal .modal-header {
    position: absolute;
    right: 0;
    z-index: 99;
}

#reviewModal .modal-header button {
    font-size: 12px;
}

#reviewModal i.bi-star:hover {
    color: #2e2e2e;
    transition: all .5s ease-out;
}

.previewImage img {
    margin-top: 10px;
    max-height: 80px;
    object-fit: contain;
}

.submit_butt {
    background-color: var(--c6);
    color: #ffffff;
    border: 1px solid var(--c6);
    padding: 5px 10px;
    transition: all .5s ease-out;
}

.submit_butt:hover {
    background-color: #ffffff;
    color: var(--c6);
    border: 1px solid var(--c6);
    transition: all .5s ease-out;
}

.review-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    max-width: 100%;
}

.review-left {
    flex: 0 0 150px;
    text-align: center;
    border-right: 1px solid #ddd;
    padding-right: 30px;
}

.review-average {
    font-size: 60px;
    color: var(--c6) !important;
    font-weight: bold;
}

.review-stars i {
    color: var(--c6) !important;
    font-size: 18px;
}

.review-count {
    margin-top: 10px;
    color: #555;
}

.review-center {
    flex: 1;
    padding: 0 30px;
}

.review-row {
    display: flex;
    align-items: center;
    margin: 8px 0;
}

.star-label {
    width: 40px;
    color: var(--c6) !important;
    display: flex;
    align-items: center;
    gap: 2px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 10px;
}

.progress-fill {
    height: 100%;
    background: var(--c6) !important;
    transition: width 0.4s ease-in-out;
}

.star-count {
    width: 20px;
    text-align: right;
    color: #555;
}

.review-right {
    flex: 0 0 150px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.review-right p {
    margin: 0 0 10px;
    color: var(--c6) !important;
    font-weight: bold;
}

.review-cta-stars i {
    font-size: 24px;
    color: var(--c6) !important;
    cursor: pointer;
}

.no-scrolls {
    position: fixed !important;
    width: 100% !important;
    overflow-y: scroll;
}

.custom-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    /* same as Bootstrap backdrop */
}

.custom-model-btn {
    color: #6a6a6a;
    border: 1px solid #666;
    padding: 10px 0;
    text-align: center;
    margin: 6px auto;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900 !important;
    font-family: Campton-Light;
}

.review-stars i {
    color: #f5a623 !important;
    /* Gold star color */
    margin-right: 2px;
    font-size: 1.2rem;
}

.review-name {
    margin: 5px 0;
}

.review-verified {
    font-size: 0.9rem;
}

.review-verified i {
    color: #000;
    margin-right: 5px;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

@media (max-width: 767.98px) {
    .review-left {
        border-right: unset !important;
    }
}