*,
:after,
:before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    text-decoration: inherit;
    vertical-align: inherit;
}
.review-page .home-wrapper {
    max-width: 500px;
    margin: auto;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    font-family: 'Manrope', sans-serif;
}
.review-page .home-wrapper .wrapper-inner {
    max-height: 90vh;
    overflow-y: auto;
}
.review-page .home-banner-section.home-ban {
    display: none; /* Removed as requested */
}
.review-page .client-image {
    height: auto;
    width: auto;
    margin: auto;
    overflow: auto;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}
.review-page .client-image img {
    max-height: 150px;
    max-width: 200px;
    height: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin: 0 auto 20px;
    display: block;
    padding-top: 20px;
}
.review-page .client-info-section {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 10px;
    padding-top: 0px !important;
    
}
.review-page .client-info-section h3 {
    font-size: 24px;
    margin: 0;
    color: #333;
    font-weight: 600;
}
.review-page .client-info-section p {
    font-size: 16px;
    margin: 10px 0 0;
    color: #666;
    font-weight: normal;
}
.review-page .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
}
.review-page .wrapper-inner::-webkit-scrollbar {
    width: 5px;
}
.review-page .wrapper-inner::-webkit-scrollbar-thumb {
    background-color: gray;
}
.review-page .steps-review {
    text-align: center;
}
/* Star Rating */
.review-page .rating.app_feedback {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0px;
    flex-direction: row-reverse;
}
/* Reverse the display order to make stars go from left to right */
.review-page .rating.app_feedback.left-to-right {
    flex-direction: row;
}
/* Adjust the label positioning to maintain the proper hover effect */
.review-page .rating.app_feedback.left-to-right label {
    float: none !important;
}
.review-page .rating > input { 
    display: none; 
} 
.review-page .rating > label {
    font-size: 22px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    margin: 0;
}
.review-page .rating > input:checked ~ label, 
.review-page .rating:not(:checked) > label:hover, 
.review-page .rating:not(:checked) > label:hover ~ label {
    color: #FFD700;
}
.review-page .form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: inherit;
    box-sizing: border-box;
}
.review-page .submit-btn {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}
.review-page .btn-primary {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    background-color: #5DA977;
    color: white !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    margin-bottom: 15px;
    text-decoration: none;
}
.review-page .btn-primary:hover {
    background-color: #4c9165;
}
.review-page .text-muted {
    color: #666 !important;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}
.review-page .review-footer {
    display: none; /* Removed as requested */
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.review-page .btn-facebook {
    background-color: #1877F2;
    color: white !important;
}
.review-page .btn-google {
    background-color: #EA4335;
    color: white !important;
}
.review-page .btn-tripadvisor {
    background-color: #34E0A1;
    color: white !important;
}
.review-page .btn-trustpilot {
    background-color: #000000;
    color: white !important;
}
.review-page .btn-booking {
    background-color: #003580;
    color: white !important;
}
.review-page .btn-hotels {
    background-color: #F64B57;
    color: white !important;
}
.review-page .btn-yell {
    background-color: #C3272E;
    color: white !important;
}
.review-page .btn-list .calllist-iteam .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}
.card:not(.step-card-preview).review-page {
    padding: 0 15px;
}
.review-page .line {
    position: relative;
    z-index: 1;
}
.review-page .line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    border: 1px solid #ced4da;
    width: 100%;
    transform: translateY(-50%);
    z-index: -1;
}
.review-page .line span {
    background-color: white;
    padding: 0 10px;
}
.QRcode canvas {
    height: 100%;
    width: 100%;
}
/* responsive */
@media screen and (max-width: 420px) {
    .review-page .container {
        padding: 0;
    }
    .close-icon {
        font-size: 10px;
    }
}
@media screen and (max-width: 575px) {
    .information-tab {
        border-radius: 15px;
    }
    .information-tab .nav-item .nav-link {
        padding: 8px 10px;
    }
}