/**
 * Community Reviews Locations Plugin Styles
 */

/* Step Form Wrapper */
.crl-review-step-form-wrapper {
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

/* Step Indicator */
.crl-step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
}

.crl-step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.crl-step-dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.crl-step-dot.active {
    border-color: #0073aa;
    background: #0073aa;
    color: #fff;
    transform: scale(1.1);
}

.crl-step-dot.completed {
    border-color: #28a745;
    background: #28a745;
    color: #fff;
}

.crl-step-label {
    position: absolute;
    bottom: 20px;
    font-size: 11px;
    white-space: nowrap;
    color: #666;
    font-weight: normal;
    right: 0;
}

.crl-step-dot.active .crl-step-label {
    color: #0073aa;
    font-weight: 600;
}

/* Form Steps */
.crl-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.crl-step.active {
    display: block;
}
.crl-step p {
    font-family: 'Giest';
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.crl-step-form * {
    font-family: 'Giest';
    color: #1e293b;
}

.crl-step-form .help-text {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 400;
}

.crl-step-form .crl-form-field {
    padding: 10px 0 20px 0;
}
.crl-form-field.crl-step2-field.crl-no-amenities {
    padding: 0;
}
.crl-step h3 {
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 26px !important;
    padding-bottom: 0;
    font-weight: 600 !important;
    letter-spacing: -0.5px;
}

/* Form Fields */
.crl-form-field {
    margin-bottom: 5px;
}

.crl-form-field label {
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95em;
}

.crl-form-field input[type="text"],
.crl-form-field input[type="email"],
.crl-form-field input[type="number"],
.crl-form-field input[type="search"],
.crl-form-field textarea,
.crl-form-field select {
    width: 100%;
    padding: 19px 15px;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border: 0 !important;
    background-color: #f0f0f0;
}

.crl-form-field input:focus,
.crl-form-field textarea:focus,
.crl-form-field select:focus {
    outline: none;
}

.crl-form-field textarea {
    resize: vertical;
    border: 0;
    min-height: 100px;
    border-bottom: 1px solid #ddd !important;
    background-color: transparent;
	padding: 20px 0;
}

.crl-form-field input.crl-field-error,
.crl-form-field textarea.crl-field-error,
.crl-form-field select.crl-field-error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.crl-form-field small {
    color: #666;
    font-size: 0.85em;
    margin-top: 5px;
    display: block;
}

.crl-register-property-link {
    display: inline-block;
    margin-left: 8px;
    font-weight: 600;
    text-decoration: underline;
}
.crl-form-field .google-search-wrapper span {
    height: 20px;
    width: 27px;
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0.4;
}
.crl-form-field .google-search-wrapper {
    position: relative;
}
.crl-register-property-trigger button {
    margin-left: 8px;
    padding: 5px 10px;
    border: 1px solid #89c1e7;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.crl-inline-property-registration {
    margin-bottom: 24px;
}

.crl-property-registration-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.crl-property-registration-wrapper {
    --e-global-color-primary: #1e293b;
}

.crl-property-form-message {
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 10px 12px;
}

.crl-property-submit-btn {
    font-family: "Giest", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    fill: var(--e-global-color-primary);
    color: var(--e-global-color-primary);
    background-color: var(--e-global-color-secondary);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-primary);
    border-radius: 100px 100px 100px 100px;
    padding: 16px 20px 15px 20px;
}

#crl-register-property-form #crl_property_notes {
    background-color: #f0f0f0 !important;
    border: 0 !important;
    padding: 19px 15px !important;
}

/* Radio Groups */
.crl-radio-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.crl-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.crl-radio-label:hover {
    border-color: #0073aa;
}
span.crl-radio-wrap {
    position: relative;
    display: block;
    padding-left: 20px;
}
.crl-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.crl-radio-label input[type="radio"]:checked + span {
    color: #1e293b;
    font-weight: 600;
}
.crl-radio-group.what-to-review > label {
    display: flex;
    flex-direction: row;
    align-items: center;
}



/* Checkbox Labels */
.crl-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.2s ease;
}



/* Rating Sliders (1-5 Scale) */
.crl-rating-slider {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: column;
}
.crl-rating-slider .rangex-text {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.crl-rating-slider .rangex-text > div:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
}
.crl-rating-slider .rating-value {
    font-size: 1.5em;
    font-weight: 700;
    color: #0073aa;
    min-width: 35px;
    text-align: center;
}

.crl-scale-label {
    font-size: 0.85em;
    color: #666;
    font-weight: normal;
}

/* Range Slider Styles */
.crl-rating-slider input[type="range"] {
    -webkit-appearance: none; /* Remove default styling */
    width: 100%;
    height: 12px;
    background: #e0e0e0; /* Fallback background */
    border-radius: 5px;
    outline: none;
}

/* Chrome, Safari, Edge - Track - Gradient changes based on --rating value */
.crl-rating-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 12px;
    background: linear-gradient(to right, #1e293b var(--rating, 60%), #e0e0e0 var(--rating, 60%));
    border-radius: 5px;
}

/* Chrome, Safari, Edge - Thumb */
.crl-rating-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #1e293b; /* Dark thumb */
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px; /* Align thumb with track */
}

/* Firefox - Track - Gradient changes based on --rating value */
.crl-rating-slider input[type="range"]::-moz-range-track {
    height: 8px;
    background: linear-gradient(to right, #1e293b var(--rating, 60%), #e0e0e0 var(--rating, 60%));
    border-radius: 5px;
}

/* Firefox - Thumb */
.crl-rating-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #1e293b;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* IE/Edge (non-Chromium) - Track */
.crl-rating-slider input[type="range"]::-ms-track {
    height: 8px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
.crl-rating-slider input[type="range"]::-ms-fill-lower {
    background: #1e293b;
    border-radius: 5px;
}
.crl-rating-slider input[type="range"]::-ms-fill-upper {
    background: #e0e0e0;
    border-radius: 5px;
}
.crl-rating-slider input[type="range"]::-ms-thumb {
    width: 18px;
    height: 18px;
    background: #1e293b;
    border-radius: 50%;
    cursor: pointer;
}

/* Experience Textareas */
.crl-experience-textarea {
    margin-top: 35px;
}

.crl-experience-textarea label {
    font-size: 16px;
    margin-bottom: 5px;
}

.crl-experience-textarea textarea {
    min-height: 80px;
    font-size: 0.95em;
}

/* Navigation Buttons */
.crl-form-navigation {
    display: flex;
    justify-content: space-between;
}

.crl-form-navigation .button {
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.crl-form-navigation .button-primary {
    background: #89c1e7;
    color: #fff;
    border: 0;
	border-radius:100px;
}

.crl-form-navigation .button-primary:hover {
    background: #1e293b;
    border-color: #89c1e7;
}

.crl-form-navigation .button-secondary {
    background: #89c1e7;
    color: #fff;
    border: 0;
	border-radius:100px;
}

.crl-form-navigation .button-secondary:hover {
    background: #1e293b;
    border-color: #1e293b;
}

/* Autocomplete Results */
.crl-autocomplete-results {
    position: absolute;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
    width: calc(100% - 2px);
}

.crl-autocomplete-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.crl-autocomplete-results li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.crl-autocomplete-results li:last-child {
    border-bottom: none;
}

.crl-autocomplete-results li.crl-register-property-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    gap: 10px;
}

@media (min-width: 768px) {
    .crl-autocomplete-results li.crl-register-property-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 15px;
        gap: 0;
    }
}

.crl-autocomplete-results li:hover {
    background: #f0f7ff;
}

/* Error Messages */
.crl-error-message {
    color: #dc3545;
    background: #f8d7da;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #f5c6cb;
    margin-top: 15px;
    margin-bottom: 10px;
    display: none;
}

/* Thank You Step */
.crl-thank-you-step {
    text-align: center;
    padding: 40px 20px;
}

.crl-thank-you-step h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.crl-thank-you-step p {
    font-size: 1.1em;
    color: #666;
    max-width: 500px;
    margin: 0 auto 30px;
}

.crl-thank-you-step .button {
    padding: 12px 30px;
    font-size: 1em;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
}

/* Star Rating Display */
.crl-star-rating {
    display: inline-flex;
    gap: 2px;
}

.crl-star-rating .star {
    font-size: 18px;
    color: #ddd;
}

.crl-star-rating .star.filled {
    color: #ffc107;
}

.crl-star-rating .star.half {
    position: relative;
    color: #ddd;
}

.crl-star-rating .star.half::before {
    content: 'â˜…';
    position: absolute;
    left: 0;
    color: #ffc107;
    clip-path: inset(0 50% 0 0);
}

/* Reviews List */
.crl-reviews-list {
    margin-top: 30px;
}

.crl-review-item {
    background: #89c1e724;
    border: 1px solid #89c1e7;
    border-radius: 15px;
    padding: 20px 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.2s ease;
}

.crl-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 65px !important;
    flex-wrap: wrap;
    gap: 15px;
}

.crl-review-author {
    font-weight: 600;
    color: #1e293b;
    font-size: 20px;
}

.crl-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #e8f7ef;
    color: #166534;
    border: 1px solid #86efac;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    vertical-align: middle;
}

.crl-resident-type span {
    font-size: 14px;
}
.crl-review-date {
    color: #89c1e7;
    font-size: 14px;
}

/* Review Author Avatar */
.crl-review-author-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.crl-review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 20%;
    background: #89c1e7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.crl-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crl-author-initial {
    font-size: 30px;
    font-weight: 600;
    color: #1e293b;
    text-transform: uppercase;
}

.crl-review-name-date {
    display: flex;
    flex-direction: column;
}

/* Overall Rating Display for Individual Review */
.crl-review-overall-rating {
    text-align: center;
    background: #89c1e7;
    color: #1e293b;
    padding: 10px 10px;
    border-radius: 8px;
    min-width: 90px;
}

.crl-review-overall-rating .crl-rating-number {
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
}

.crl-review-overall-rating .crl-rating-max {
    font-size: 0.8em;
    opacity: 0.8;
}

.crl-review-overall-rating .crl-rating-stars {
    margin-top: 0;
}

.crl-review-overall-rating .crl-rating-stars .star {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

.crl-review-overall-rating .crl-rating-stars .star.filled {
    color: #1e293b;
}

/* Individual Review Averages */
.crl-review-averages {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    flex-wrap: wrap;
}

.crl-review-avg-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crl-review-avg-item .crl-avg-label {
    font-size: 0.85em;
    color: #666;
}

.crl-review-avg-item .crl-avg-value {
    font-weight: 600;
    color: #0073aa;
    background: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.9em;
}

.crl-review-avg-item .crl-avg-count {
    font-size: 0.8em;
    color: #999;
}

.crl-total-ratings {
    margin-left: auto;
}

.crl-total-ratings .crl-avg-value {
    font-weight: 600;
    color: #28a745;
    background: #e8f5e9;
    font-size: 1em;
}

.crl-avg-stars {
    margin-left: 8px;
}

.crl-avg-stars .star {
    font-size: 14px;
    color: #ddd;
}

.crl-avg-stars .star.filled {
    color: #ffc107;
}

/* Ratings Detail Sections */
.crl-ratings-detail {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.crl-ratings-detail h4 {
    margin: 0 0 10px;
    font-size: 0.95em;
    color: #555;
}

/* Collapsible Sections */
.crl-collapsible-section {
    margin-top: 15px;
    overflow: hidden;
    padding: 15px;
    background-color: #89c1e729;
    border: 1px solid #89c1e7;
    border-radius: 10px;
}

.crl-collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.crl-collapsible-header h4 {
    margin: 0;
    font-size: 16px !important;
    color: #1e293b;
}

.crl-toggle-icon {
    font-size: 12px;
    color: #005a8c;
    transition: transform 0.2s ease;
    transform: rotate(0deg);
}

.crl-collapsible-content {
    display: none;
    margin-top: 20px;
}

.crl-collapsible-content.visible {
    display: block;
}

/* Ratings Group within Collapsible */
.crl-ratings-group {
    margin-bottom: 15px;
}

.crl-ratings-group:last-child {
    margin-bottom: 0;
}

.crl-ratings-group h5 {
    margin: 0 0 10px;
    font-size: 0.9em;
    color: #0073aa;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.crl-review-ratings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax( 49% , 1fr));
    gap: 15px;
    margin: 15px 0;
}

.crl-review-rating {
    font-size: 0.9em;
    margin-bottom: 10px;
}

.crl-review-rating .crl-rating-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.crl-review-rating .label {
    color: #666;
    margin-right: 8px;
}

.crl-review-rating .value {
    font-weight: 600;
    color: #333;
}

.crl-rating-progress {
    height: 8px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #89c1e7;
}

.crl-rating-progress-bar {
    height: 100%;
    background: #89c1e7;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.crl-review-content {
    color: #555;
    line-height: 1.6;
    margin: 15px 0;
}

.crl-review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9em;
    color: #666;
}

.crl-review-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Location Summary */
.crl-location-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.crl-location-summary h2 {
    margin: 0 0 15px;
    color: #333;
}

.crl-location-address {
    color: #666;
    margin-bottom: 15px;
}

.crl-location-rating {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
    margin-top: 20px;
}

.crl-location-rating .average {
    font-size: 1.5em;
    font-weight: 700;
    color: #0073aa;
}

/* Review Photos */
.crl-review-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.crl-review-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.crl-review-photo:hover {
    transform: scale(1.05);
}

/* Button Styles */
.crl-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.crl-button:hover {
    background: #005a8c;
    color: #fff;
    text-decoration: none;
}

.crl-button-secondary {
    background: #fff;
    color: #666;
    border: 2px solid #ddd;
}

.crl-button-secondary:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #999;
}

/* Messages */
.crl-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.crl-message.crl-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.crl-message.crl-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ========================================
   Review Actions Styles
   ======================================== */

.crl-review-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 1px solid #dbdbdb;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.crl-helpful-btn,
.crl-report-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    color: #555;
    transition: all 0.2s ease;
}

.crl-helpful-btn:hover,
.crl-report-btn:hover {
    background: #e9ecef00;
    border-color: #cccccc00;
    color: #1e293b !important;
}

.crl-helpful-btn.voted {
    color: #1e293b;
    background: #e9ecef00;
    border-color: #cccccc00;
    padding:0;
}
button.crl-helpful-btn {
    border: 0;
    padding: 0;
    background-color: transparent !important;
}

button.crl-report-btn {
    border: 0;
    padding: 0;
    background-color: transparent !important;
}
button.crl-report-btn:hover,
button.crl-helpful-btn:hover{
    background-color: transparent !important
}
.crl-helpful-btn:disabled,
.crl-report-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.crl-already-reported {
    color: #999;
    font-size: 0.9em;
    padding: 8px 16px;
}

.crl-action-message {
    font-size: 0.85em;
    margin-left: 10px;
    animation: fadeIn 0.3s ease;
}

.crl-action-message.crl-success {
    color: #28a745;
}

.crl-action-message.crl-error {
    color: #dc3545;
}

/* Report Modal Styles */
.crl-report-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crl-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.crl-modal-content {
    position: relative;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crl-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.crl-modal-close:hover {
    color: #333;
}

.crl-modal-content h3 {
    margin: 0 0 20px;
    color: #1e293b;
    font-size: 1.3em;
}

.crl-report-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #89c1e7;
    border-radius: 100px;
    font-size: 1em;
    margin-bottom: 15px;
    font-size: 14px;
    margin-top: 10px;
}

.crl-report-form input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
}

.crl-report-form .button {
    margin-right: 10px;
}

.crl-report-error {
    font-size: 0.9em;
    margin-top: 10px;
}

.crl-report-success {
    text-align: center;
}

.crl-report-success p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

/* Location Single */
section.location_hero {
    height: 600px;
    background-position: center;
    background-size: cover;
    position:relative;
}

section.location_hero::before{
    content:'';
    position:absolute;
    height: 100%;
    background-color: #00000029;
    width: 100%;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 768px) {
    .crl-review-step-form-wrapper {
        padding: 15px;
    }

    .crl-step-indicator {
        padding: 0 10px;
    }

    .crl-step-label {
        font-size: 10px;
    }

    .crl-form-navigation {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .crl-form-navigation .button {
        width: 100%;
        text-align: center;
    }

    .crl-review-ratings {
        grid-template-columns: 1fr;
    }

    .crl-review-header {
        flex-direction: column;
    }

    .crl-location-header {
        padding: 25px;
    }

    .crl-location-header h1 {
        font-size: 1.8em;
    }

    .crl-location-stats {
        gap: 20px;
    }

    .crl-review-actions {
        flex-direction: column;
        gap: 10px;
    }

    .crl-review-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .crl-step-dot {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }

    .crl-step-label {
        display: none;
    }

    .crl-step h3 {
        font-size: 1.2em;
    }

    .crl-form-field input[type="text"],
    .crl-form-field input[type="email"],
    .crl-form-field input[type="number"],
    .crl-form-field input[type="search"],
    .crl-form-field textarea,
    .crl-form-field select {
        padding: 10px 12px;
    }
}

/* ========================================
   Locations List Styles
   ======================================== */

.crl-locations-list {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.crl-locations-list .crl-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.crl-locations-list .crl-filter-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.crl-locations-list .crl-filter-item {
    flex: 1;
    min-width: 150px;
}

.crl-locations-list .crl-filter-item input,
.crl-locations-list .crl-filter-item select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
}

.crl-locations-list .crl-filter-item:first-child {
    flex: 2;
    min-width: 250px;
}

.crl-locations-list .crl-results {
    min-height: 200px;
}

.crl-locations-list .crl-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.crl-locations-list .crl-no-results {
    text-align: center;
    padding: 40px;
    color: #666;
}

.crl-locations-list .crl-location-list {
    display: flex;
    gap: 20px;
}

.crl-locations-list .crl-location-item {
    background: #F6FBFF;
    border-radius: 13px;
    padding: 15px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 100%;
    max-width: 33.33%;
}

.crl-locations-list .crl-location-image {
    flex-shrink: 0;
    width: 100%;
}

.crl-locations-list .crl-location-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.crl-locations-list .crl-location-content {
    flex: 1;
}

.crl-locations-list .crl-location-item h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.crl-locations-list .crl-location-item h3 a {
    color: #0073aa;
    text-decoration: none;
}

.crl-locations-list .crl-location-item h3 a:hover {
    text-decoration: underline;
}

.crl-locations-list .crl-location-address {
    color: #666;
    margin-bottom: 10px;
}

.crl-locations-list .crl-location-rating {
    margin-bottom: 15px;
}

.crl-locations-list .crl-rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.crl-locations-list .crl-rating-stars {
    color: #ffc107;
    font-size: 18px;
}

.crl-locations-list .crl-rating-stars .star {
    color: #ddd;
}

.crl-locations-list .crl-rating-stars .star.filled {
    color: #ffc107;
}

.crl-locations-list .crl-rating-value {
    font-size: 1.5em;
    font-weight: 700;
    color: #0073aa;
}

.crl-locations-list .crl-rating-meta {
    font-size: 0.9em;
    color: #666;
}

.crl-locations-list .crl-review-count {
    margin-right: 15px;
}

.crl-locations-list .crl-latest-review {
    color: #888;
}

.crl-locations-list .crl-no-reviews {
    color: #999;
}

.crl-locations-list .crl-location-type {
    background: #e9ecef;
    padding: 3px 10px;
    border-radius: 4px;
    color: #555;
    font-size: 0.85em;
    margin-left: 10px;
}

.crl-locations-list .crl-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.crl-locations-list .crl-pagination button {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.crl-locations-list .crl-pagination button:hover {
    background: #f0f0f0;
}

.crl-locations-list .crl-pagination button.active {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.crl-locations-list .crl-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .crl-locations-list .crl-location-item {
        flex-direction: column;
    }

    .crl-locations-list .crl-location-image {
        width: 100%;
    }

    .crl-locations-list .crl-filter-item {
        min-width: 100%;
    }

    .crl-locations-list .crl-filter-item:first-child {
        min-width: 100%;
    }
}

/* ========================================
   Top Rated Locations Slider Styles
   ======================================== */

.crl-top-rated-locations-slider {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.crl-top-rated-locations-slider .crl-top-location-item {
    padding: 15px;
}

.crl-top-rated-locations-slider .crl-location-card {
    background: #354053;
    border-radius: 27px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    height: 100%;
    padding: 20px;
}

.crl-top-rated-locations-slider .crl-location-image-wrap {
    height: 100%;
    overflow: hidden;
    width: 100%;
    max-width: 40%;
    border-radius: 20px;
    min-height: 450px;
    max-height: 500px;
}
.crl-top-rated-locations-slider .crl-location-image-wrap a {
    display: block;
    height: 450px;
    position: relative;
}
.crl-top-rated-locations-slider .crl-location-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crl-top-rated-locations-slider .crl-location-content-wrap {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.crl-top-rated-locations-slider .crl-location-header {
    margin-bottom: 12px;
}

.crl-top-rated-locations-slider .crl-location-title {
    margin: 0 0 8px;
    font-size: 1.2em;
}

.crl-top-rated-locations-slider .crl-location-title a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

.crl-top-rated-locations-slider .crl-location-title a:hover {
    text-decoration: underline;
}

.crl-top-rated-locations-slider .crl-location-type {
    background: #e9ecef;
    padding: 3px 10px;
    border-radius: 4px;
    color: #555;
    font-size: 0.8em;
}

.crl-top-rated-locations-slider .crl-location-address {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.crl-top-rated-locations-slider .crl-address-icon {
    font-size: 1.1em;
}

.crl-top-rated-locations-slider .crl-location-rating {
    margin-bottom: 15px;
}

.crl-top-rated-locations-slider .crl-rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.crl-top-rated-locations-slider .crl-rating-value {
    font-size: 3.5em;
    font-weight: 700;
    color: #fff;
    line-height: 50px;
}

.crl-top-rated-locations-slider .crl-rating-stars {
    color: #89c1e7;
}

.crl-top-rated-locations-slider .crl-rating-stars .star {
    color: #ddd;
    font-size: 20px;
}

.crl-top-rated-locations-slider .crl-rating-stars .star.filled {
    color: #89c1e7;
}

.crl-top-rated-locations-slider .crl-rating-meta {
    font-size: 1.1rem;
    color: #fff;
    text-transform: capitalize;
}
.crl-top-rated-locations-slider .crl-rating-meta span {
    font-size: 16px;
    font-weight: 300;
}
.crl-top-rated-locations-slider .crl-no-reviews {
    color: #999;
    font-size: 0.9em;
}

/* Review section styles */
.crl-top-rated-locations-slider .crl-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.crl-top-rated-locations-slider .crl-review-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.crl-top-rated-locations-slider .crl-review-rating-value {
    font-size: 1.2em;
    font-weight: 700;
    color: #0073aa;
}

.crl-top-rated-locations-slider .crl-review-rating-stars {
    color: #ffc107;
    font-size: 0.9em;
}

.crl-top-rated-locations-slider .crl-review-rating-stars .star {
    color: #ddd;
}

.crl-top-rated-locations-slider .crl-review-rating-stars .star.filled {
    color: #ffc107;
}

.crl-top-rated-locations-slider .crl-review-date {
    color: #888;
    font-size: 0.8em;
}

.crl-top-rated-locations-slider .crl-review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.crl-top-rated-locations-slider .crl-review-author {
    font-weight: 600;
    color: #333;
}

.crl-top-rated-locations-slider .crl-review-meta > span {
    background: #f0f7ff00;
    
	color: #fff;
    padding: 2px 16px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 300;
    border: 1px solid #89c1e7;
}
.crl-top-rated-locations-slider .crl-review-meta > span > span {
	  color: #89c1e7;  
}
.crl-top-rated-locations-slider .crl-review-excerpt {
    color: #555;
    font-size: 0.9em;
    line-height: 1.5;
}

.crl-top-rated-locations-slider .crl-review-excerpt p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-family: 'Giest';
    font-weight: 200;
}

.crl-top-rated-locations-slider .crl-view-details-button {
    margin-top: auto;
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    transition: background 0.2s;
}

.crl-top-rated-locations-slider .crl-view-details-button:hover {
    background: #005177;
}

/* Slick slider custom styles */
.crl-top-rated-locations-slider .slick-prev,
.crl-top-rated-locations-slider .slick-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #0073aa;
    color: #0073aa;
    z-index: 1;
}

.crl-top-rated-locations-slider .slick-prev:hover,
.crl-top-rated-locations-slider .slick-next:hover {
    background: #0073aa;
    color: #fff;
}

.crl-top-rated-locations-slider .slick-prev {
    left: -50px;
}

.crl-top-rated-locations-slider .slick-next {
    right: -50px;
}

.crl-top-rated-locations-slider .slick-dots {
    bottom: -30px;
}

.crl-top-rated-locations-slider .slick-dots li button:before {
    font-size: 12px;
    color: #0073aa;
}

/* Browse Props*/
.crl-filter-item.search-input {
    background-color: #fff;
    padding: 25px;
    box-shadow: 0 0 20px #0000002e;
    border-radius: 20px;
    padding-bottom: 14px;
}
.crl-filter-item.search-input input{
    background-color:#F2F2F2; border:0;
    height:60px;
}
.crl-filter-item.search-input input:focus{
    outline:0;
    box-shadow:0 0 0 transparent
}
.crl-filter-search-helptext {
    font-size: 14px;
    margin-top: 10px;
    font-family: 'Giest';
}

.crl-filter-narrow-search {
    display: flex;
    gap: 30px;
    padding: 30px;
    margin-top: 50px;
    background-color: #F6FBFF;
    border-radius:20px;
    border:1px solid #89C1E7;
}

.crl-filter-narrow-search > div {
    width: 100%;
    max-width: 50%;
}

.crl-filter-narrow-search label {
    margin-bottom: 10px;
    font-family: 'Giest';
    font-size: 14px;
}
.crl-filter-narrow-search select{
    border:0;
    background-color:#fff;
    border-radius:10px;
    height:60px;
}


.crl-filter-item.crl-sorting {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    align-items:center;
    margin-bottom: 60px;
}
.crl-filter-item.crl-sorting > div{
    width:100%;
}
.crl-filter-item.crl-sorting > div:first-child{
    max-width:80%;
}
.crl-filter-item.crl-sorting > div:last-child{
        max-width: 20%;
    display: flex;
    gap: 20px;
    align-items: center;
}
	
.crl-filter-sorting .crl-sort-label{
    margin-bottom: 10px;
    font-family: 'Giest';
    font-size: 14px;
}
.crl-filter-sorting select{
    border:0;
    background-color:#F6FBFF;
    border-radius:10px;
    height:60px;
}

.crl-location-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:20px;
}

.crl-location-list > div {
    width: 100%;
    max-width: 32%;
    padding: 20px;
    border-radius: 20px;
    background-color: #f6fbff;
}
.crl-location-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    position:relative;
}

.crl-location-image a {
    display: block;
    height: 100%;
    width: 100%;
}

.crl-location-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.crl-location-image span.crl-location-type {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #0000009c;
    color: #fff;
    font-size: 12px;
    font-family: 'Giest';
}


/* Browse Property Card*/
.crl-location-heading {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 0;
}

.crl-location-heading h3 {
    font-size: 16px !important;
    margin: 0;
}

.crl-location-heading > div {
    width: 100%;
    max-width: 50%;
}

.crl-address p {
    font-size: 14px;
}


.crl-location-rating_wrap {
    display: flex;
    gap: 12px;
}

.crl-rating-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.crl-rating-display span.crl-rating-value {
    font-size: 34px;
    font-family: 'Giest';
    font-weight: 700;
}

span.crl-review-count {
    margin-top: -7px;
}

button.button.button-primary.crl-property-submit-btn {
    background-color: #1e293b !important;
    font-family: "Giest", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    fill: #1e293b !important;
    color: #fff !important;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: transparent !important;
    border-radius: 100px 100px 100px 100px !important;
    padding: 16px 20px 15px 20px !important;
}
button.button.button-primary.crl-property-submit-btn:hover {
    background: #fff !important;
    border-color: #1e293b !important;
    color: #1e293b !important;
}


.crl-latest-review-wrap span {
    font-size: 12px;
}

.crl-view-all a {
    background-color: #89C1E7;
    color: #1f2124;
    border-radius: 20px;
    padding: 10px 20px;
    display: inline-block;
    font-family: 'Giest';
    font-weight: 600;
}

.crl-view-all {
    display: block; margin:10px 0
}


p.crl-location-address {
    display: flex;
    font-size: 12px;
    gap: 5px;
}
.crl-last-review-about p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ========================================
   Single Location Template Styles
   ======================================== */

.crl-single-location {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 70px !important;
    padding: 0;
    font-family: 'Giest';
}

.crl-location-header {
    padding: 0;
    border-radius: 0;
    margin-bottom: 30px;
    display: flex;
    width: 100%;
}

.crl-location-header .crl-stat-stars .star {
    color: rgba(255, 255, 255, 0.7);
}

.crl-location-header .crl-stat-stars .star.filled {
    color: #1f2124;
}

.crl-location-header h1 {
    margin: 0 0 15px;
    font-size: 2.5em;
}

.crl-location-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 1em;
    align-items: center;
    margin-top: 10px;
}

.crl-location-type {
    background: #1e293b;
    padding: 6px 20px 6px 20px;
    border-radius: 20px;
    font-weight: 500;
    color: #fff;
    font-size: 11px;
}

.crl-location-address {
    font-size: 20px;
    opacity: 1;
    margin-bottom: 6px;
    color: #89c1e7;
    font-weight: 400;
}

.crl-location-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.crl-stat {
    text-align: center;
}

.crl-stat-value {
    font-size: 2em;
    font-weight: 700;
}

.crl-stat-stars {
    margin: 0;
}

.crl-location-header .crl-stat-stars .star {
    color: #89c1e7;
    font-size: 20px;
}

.crl-location-header .crl-stat-stars .star.filled {
    color: #1f2124;
}

.crl-stat-label {
    font-size: 0.9em;
    opacity: 0.8;
}

.crl-rating-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.crl-rating-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.crl-rating-card h3 {
    margin: 0 0 15px;
    color: #333;
    font-size: 1.1em;
}

.crl-rating-card .rating {
    font-size: 2.5em;
    font-weight: 700;
    color: #0073aa;
}

.crl-rating-card .stars {
    margin: 10px 0;
}

.crl-rating-card .count {
    color: #666;
    font-size: 0.9em;
}

.crl-section {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.crl-section h2 {
    margin: 0 0 20px;
    color: #1e293b;
    font-size: 28px !important;
    font-weight: 600;
    margin: 0;
}

.crl-write-review-btn {
    margin-top:50px;
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.crl-write-review-btn:hover {
    background: #005a8c;
    color: #fff;
    text-decoration: none;
}
.crl-write-review-btn:hover {
    background: #1e293b;
    color: #fff;
    text-decoration: none;
}
.crl-write-review-btn:hover svg path {
    fill: #fff;
}
.single-location .crl-location-header > div {
    width: 100%;
    max-width: 50%;
}
.crl-location_title h1 {
    font-size: 62px !important;
    margin-bottom: 0;
    font-weight: 500;
}
.single-location .crl-location-header > div:last-child {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-end;
}

.single-location .crl-location-avg-rating > div {
    display: flex;
    text-align: right;
    gap: 10px;
}

.single-location .crl-location-avg-rating h5 {
    text-align: right;
    margin-bottom: 0;
}

.single-location .crl-location-avg-rating > div .crl-location-count_rating {
    font-family: 'Giest';
    font-size: 24px;
}

.single-location .crl-stat-value {
    color: #89C1E7;
    font-size: 50px;
    margin: 0;
    line-height: 60px;
    font-weight: 600;
}

.single-location .crl-stat-label {
    color: #1E293B;
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

.single-location .crl-location-avg-rating {
    margin-top: 40px;
}


.single-location a.crl-write-review-btn {
    background-color: #89c1e7;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
}

.single-location a.crl-write-review-btn span {
    display: inline-block;
    height: 20px;
    font-size: 15px;
}

.single-location a.crl-write-review-btn span svg {
    position: relative;
    top: 3px;
}



.crl-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.crl-section-header > div:last-child > div {
    display: flex;
    width: 300px;
    align-items: center;
    gap: 10px;
}

.crl-section-header > div:last-child > div span {
    display: inline-block;
    width: 100px;
}

.crl-section-header > div:last-child > div select {
    background-color: #89c1e72e;
    border: 0;
    color: #1e293b;
    font-family: 'Giest';
    font-weight: 500;
    font-size: 14px;
    height: 45px;
    border-radius: 10px;
}
.crl-about-location-text {
    margin: 60px 0;
    color: #1e293b;
    font-size: 16px;
    font-weight: 500;
}



button.crl-report-btn, button.crl-helpful-btn {
    font-size: 14px !important;
    font-weight: 500 !important;
}
.crl-average-review.by-form-field {
    padding: 30px 40px;
    background-color: #fff;
    box-shadow: 0 0 40px #00000012;
    margin-bottom: 50px;
    border-radius: 20px;
    margin-top: 70px;
}

/* Progress Bar Styles */
.crl-progress-step-counter {
    font-size: 14px;
    margin-bottom: 7px;
    font-weight: 500;
}
.crl-progress-container {
    margin-bottom: 40px;
    padding: revert-layer;
    position: relative;
}

.crl-progress-bar {
    height: 12px;
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #89c1e7;
}

.crl-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #89c1e7 0%, #89c1e7 100%);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.crl-progress-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.crl-progress-labels .crl-step-label {
    font-size: 14px;
    color: #666;
    text-align: center;
    flex: 1;
    transition: color 0.3s ease;
    opacity: 0;
}

.crl-progress-labels .crl-step-label.active {
    color: #1e293b;
    font-weight: 500;
    opacity: 1;
}

.crl-progress-labels .crl-step-label.completed {
    color: #28a745;
    opacity: 0;
}





/* Global Range Slider Styles - used in crl-rating-slider */
input[type=range] {
  -webkit-appearance: none; /* Remove default styling */
  width: 100%;
  height: 12px;
  background: #e0e0e0; /* Fallback background */
  border-radius: 5px;
  outline: none;
}

/* Chrome, Safari, Edge - Track - Dynamic gradient based on --rating */
input[type=range]::-webkit-slider-runnable-track {
  height: 12px;
  background: linear-gradient(to right, #1e293b var(--rating, 60%), #e0e0e0 var(--rating, 60%));
  border-radius: 5px;
}

/* Chrome, Safari, Edge - Thumb */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #1e293b; /* Dark thumb */
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px; /* Align thumb with track */
}

/* Firefox - Track - Dynamic gradient based on --rating */
input[type=range]::-moz-range-track {
  height: 8px;
  background: linear-gradient(to right, #1e293b var(--rating, 50%), #e0e0e0 var(--rating, 50%));
  border-radius: 5px;
}

/* Firefox - Thumb */
input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #1e293b;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* IE/Edge (non-Chromium) - Track */
input[type=range]::-ms-track {
  height: 8px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #1e293b;
  border-radius: 5px;
}
input[type=range]::-ms-fill-upper {
  background: #e0e0e0;
  border-radius: 5px;
}
input[type=range]::-ms-thumb {
  width: 18px;
  height: 18px;
  background: #1e293b;
  border-radius: 50%;
  cursor: pointer;
}





.crl-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.crl-checkbox-label input[type="checkbox"]:checked + span {
    color: #28a745;
}
.crl-radio-group.what-to-review .crl-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: -10px;
    opacity: 0;
}



.crl-radio-label input[type="radio"]:checked + span.radio-check {
    background-color: #1e293b;
    height: 20px;
    width: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
}

.crl-radio-label input[type="radio"] + span.radio-check {
    border: 2px solid #1e293b;
    height: 20px;
    width: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -10px;
    border-radius: 4px;
}


.crl-form-field label.crl-checkbox-label {
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
}



.crl-upload-wrapper .crl-upload {
    background-color: #89c1e724;
    padding: 30px;
    border-radius: 10px;
    border: 3px dashed #89c1e7;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
	position:relative;
}

.crl-upload-wrapper .crl-upload input[type="file"] {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    opacity: 0;
}


.crl-radio-group.crl-resident-type {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.crl-radio-group.crl-resident-type label {
    width: 100%;
    max-width: 50%;
    border: 1px solid #1e293b;
    padding: 20px;
    display: flex;
    justify-content: center;
	position:relative;
}


.crl-years-values {
    display: flex;
    width: 100%;
    gap: 10px;
}

.crl-years-values > div {
    width: 100%;
}

.crl-years-values > div select {
    border: 1px solid #1e293b !important;
    background-color: transparent;
}

.crl-form-field.crl-your-age select {
	    border: 1px solid #1e293b !important;
    background-color: transparent;
}

.crl-radio-group.crl-about-user label {
    display: flex;
    align-items: flex-start;
    border: 1px solid #1e293b;
    padding: 20px;
}

.crl-radio-group.crl-about-user label span:last-child {
    display: flex;
    flex-direction: column;
}



.crl-form-field.crl-verification-box {
    padding: 0;
}

.crl-form-field.crl-verification-box label {
    display: flex;
    align-items: flex-start;
}

.crl-form-field.crl-verification-box label span:first-child {
    font-size: 18px;
}

.crl-form-field.crl-verification-box label span:last-child {
    font-size: 14px;
    line-height: 20px;
}
.crl-form-field.crl-confirmation-box span.help-text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 0 !important;
    margin: 0;
}

.crl-form-field.crl-confirmation-box {
    padding: 20px 0;
    border-top: 1px solid #ddd;
    margin-top: 20px !important;
}

.crl-form-field.crl-confirmation-box label {
    display: flex;
    align-items: flex-start;
}





/* Mobile responsive */
@media (max-width: 480px) {
    .crl-progress-labels .crl-step-label {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .crl-top-rated-locations-slider .crl-location-card {
        flex-direction: column;
    }

    .crl-top-rated-locations-slider .crl-location-image-wrap {
        height: 200px;
    }

    .crl-top-rated-locations-slider .slick-prev {
        left: 10px;
    }

    .crl-top-rated-locations-slider .slick-next {
        right: 10px;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .crl-review-step-form-wrapper {
        max-width: 100%;
    }

    .crl-form-navigation,
    .crl-step-indicator {
        display: none;
    }
}
