
.cgrw_wrap{
    background: #fff;
    padding: 20px;
    margin: 2% auto;
    width: 96%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.cgrw_wrap h2{
    font-size: 18px;
    background-color: aliceblue;
    padding: 12px;
    border-radius: 6px;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #0073aa;
    text-transform: capitalize;
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align:center;
}

/* Wizard Progress Bar */
.grw-step-wizard {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    
  }
  
  .grw-step {
    flex: 1;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .grw-step-line {
    width: 100%;
    height: 2px;
    background-color: #ccc; /* Adjust the line color */
    margin: 10px 0;
}
  
  /* Connector line */
  .grw-step:not(:first-child):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #dcdcdc;
    top: 50%;
    left: -50%;
    z-index: -1;
    transform: translateY(-50%);
  }
  
  /* Step number circle */
  .grw-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #dcdcdc;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5px auto;
    color: #fff;
    font-weight: bold;
  }
  
  .step {
    background: #fff;
    padding: 20px;
    margin: 2% auto;
    width: 100%;
    /* border: 1px solid #e0e0e0; */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Step text label */
  .grw-step-text a{
    font-size: 14px;
    color: #555;
    white-space: nowrap; /* Prevent text from wrapping onto multiple lines */
    overflow: hidden;    /* Hide the overflow if the text exceeds the container */
    text-overflow: ellipsis; /* Add ellipsis (...) if the text is too long */
    display: inline-block; 
    text-decoration: none;
  }
  
  /* Active/Completed Steps */
  .grw-step.active .grw-step-num,
  .grw-step.completed .grw-step-num {
    background-color: #28a745; /* Green background for active or completed step */
  }
  
  .grw-step.active .grw-step-text a,
  .grw-step.completed .grw-step-text a {
    color: #28a745;
  }
  
  /* Hide/Show Form Steps */
  .step {
    display: none;
  }
  .step.active {
    display: block;
  }
  
  /* Basic Button Styling */
  .step-navigation {
    margin-top: 20px;
    display:block;
  }
  
  .step-navigation a, .step-navigation button {
        background: #0073aa;
        color: #fff;
        border: none;
        padding: 8px 16px;
        margin-right: 5px;
        cursor: pointer;
        border-radius: 4px;
        text-decoration: none;
  }
  .step-navigation a:hover , .step-navigation button:hover{
    background: #006799;
    text-decoration: none;
  }
  
.step {
    display: none;
}
.step.active {
    display: block;
}





/* General Layout for review widget */
.review-widget {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
}

h3 {
    text-align: center;
    margin-bottom: 30px;
}

/* Layout Option Container */
.layout-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.layout-selection{
    /*box-shadow:0 4px 8px rgba(0, 0, 0, 0.1);*/
}
.layout-selection label{
    display: inline-block !important;
    margin-right: 40px !important;
    font-size: 14px !important;
}

/* Common styles for all layout options */
.layout-option {
    width: 30%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-sizing: border-box;
}

.layout-option h4 {
    text-align: center;
    margin-bottom: 15px;
}

.preview {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.save-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
    width:15%;
    /*float: right;*/
    margin-right: 20px;
}

.save-button:hover {
    background-color: #005f87;
}

/* Specific Layout Styles */

/* Slider Layout */
.review-slider {
    display: flex;
    gap: 10px;
}

.review-slide {
    width: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.review-slide p {
    margin: 5px 0;
}

/* Sidebar Layout */
.review-sidebar {
    display: block;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

.review-sidebar .review-item {
    margin-bottom: 15px;
}

.review-sidebar .review-item p {
    margin: 5px 0;
}



/* ----- Common Styles ----- */
.review-text align-center{
  text-align: center;
}
.review-text align-left{
  text-align: left;
}
.review-text align-right{
  text-align: right;
}
.review-text align-justify{
  text-align: justify;
}

/* Slider 1 */
/* General container for carousel */
.review-carousel {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    overflow: hidden;  /* Hide horizontal scroll */
    gap: 20px;  /* Space between each review card */
    width: 100%;
   
}
.layout_div{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin: 10px 0px;
}
.layout_div h6{
    font-size: 14px;
    font-weight: 700;
    padding: 20px 20px 0px 20px;
    width: 80%;
    float: left;
}

.layout_head_div{
    width: 100%;
}
/* Slick carousel default controls */
.slick-prev, .slick-next {
    background-color: transparent;
    color: #007bff;
    font-size: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slick-prev {
    left: 10px; /* Left side */
}

.slick-next {
    right: 10px; /* Right side */
}

/* Hover effect for arrows */
.slick-prev:hover, .slick-next:hover {
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

/* Review slider items */
.review-slider {
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    margin:20px;
}



/* Slick Carousel Layout Adjustments */
.slick-track {
    display: flex;
    gap: 20px;  /* Add space between review cards */
}

.slick-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}


/*********************************
Common Slider Css
************************************/
.review-carousel .review-card{
  color:#000;
}

/********************************************
 Slider 1
********************************************/
.review-card.slider1 {
    background: #f0f0f0;
    padding: 20px;
    margin: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.review-card.slider1 .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-card.slider1 .profile-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.review-card.slider1 .review-author {
    font-size: 14px;
    font-weight: bold;
}

.review-card.slider1 .review-time {
    color: #777;
    font-size: 12px;
    margin-bottom: 0.5rem;
}

.review-card.slider1 .review-rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.review-card.slider1 .review-text {
    font-size: 1rem;
    line-height: 1.4;
}

.review-card.slider1 .read-more {
    color: #0073aa;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
}

/********************************************
 Slider 2
********************************************/
.review-card.slider2 {
    background: #fff;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 5px;
  }
  
  .review-card.slider2 .review-header {
    text-align: center; /* centers inline elements (like <img> and text) */
    margin-top:-50px;
  }
  
  .review-card.slider2 .profile-photo {
    display: inline-block; /* ensure it centers correctly */
    border-radius: 50%;    /* optional circle */
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    border:1px solid #eee;
  }
  .review-card.slider2 .review-author {
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  .review-card.slider2 .review-time {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align:center;
  }
  
  .review-card.slider2 .review-rating {
    color: #f39c12; /* gold stars */
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align:center;
  }
  
  .review-card.slider2 .review-text {
    font-size: 1rem;
    line-height: 1.4;
  }
  .review-card.slider2 .read-more {
    color: #0073aa;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    cursor: pointer;
  }
  
  
/********************************************
 Slider 3
********************************************/
.review-card.slider3 {
    background: #fff;
    border: 1px solid #eee;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 3px;
  }
  
  .review-card.slider3 .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .review-card.slider3 .profile-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
  }
  .review-card.slider3 .review-author {
    font-weight: bold;
    font-size: 1rem;
  }
  
  .review-card.slider3 .review-time {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .review-card.slider3 .review-rating {
    color: #f39c12;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .review-card.slider3 .review-text {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .review-card.slider3 .read-more {
    color: #0073aa;
    text-decoration: underline;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    cursor: pointer;
  }

 /********************************************
  Slider 4
 ********************************************/
 .review-card.slider4 {
    background: #fff;
    border: 1px solid #eee;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 3px;
  }
  
  .review-card.slider4 .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .review-card.slider4 .profile-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
  }
  .review-card.slider4 .review-author {
    font-weight: bold;
    font-size: 1rem;
  }
  
  .review-card.slider4 .review-time {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .review-card.slider4 .review-rating {
    color: #f39c12;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .review-card.slider4 .review-text {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .review-card.slider4 .read-more {
    color: #0073aa;
    text-decoration: underline;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    cursor: pointer;
  }


/******* SIDEBAR ***********/
.sidebar-layout{
    width:50%;
    margin-right:25px;
}
.sidebar_cnt{
    display:flex;
}

.review-carosel-sidebar, .review-carosel-sidebar .review-time{
  color:#000;
}
  /******************************8
  Sidebar - Centered ****
  *******************************/
  /* Sidebar widget using the "centered" layout */
.sidebar-layout-sidebar1{
    padding: 5% 20%;
}
.sidebar-layout-sidebar1 .review-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 8px;
    background: #fff;

}

.sidebar-layout-sidebar1 .review-header {
    margin-bottom: 10px;
}

.sidebar-layout-sidebar1 .profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
    border: 2px solid #0073aa;
}

.sidebar-layout-sidebar1 .review-author {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.sidebar-layout-sidebar1 .review-time {
    /*color: #777;*/
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.sidebar-layout-sidebar1 .review-rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.sidebar-layout-sidebar1 .review-text {
    font-size: 1rem;
    line-height: 1.4;
}

.sidebar-layout-sidebar1 .read-more {
    color: #0073aa;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
}


.company-layout {
    border: 1px solid #ddd;       /* Light border */
    padding: 20px;                /* Space inside the box */
    background: #fff;             /* White background */
    text-align: center;           /* Center all text */
    margin: 20px 0;               /* Spacing around the box */
    border-radius: 5px;           /* Rounded corners */
    max-width: 300px;             /* Limit the width if needed */
    margin-left: auto;
    margin-right: auto;
  }
  
  .company-layout .company-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .company-layout .company-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .company-layout .company-rating {
    font-size: 16px;
    color: #555;
  }
  
  .company-layout .company-rating .google-text {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .company-layout .company-rating .review-count {
    font-size: 14px;
    color: #888;
  }

  /**********************************
  List 
  *********************************/
  /* Overall container for the reviews */
.review-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.review-list .review-card {
  width: 60%;
  /* padding: 15px; */
  margin: 40px auto;
}

/* Individual review item */
.review-card {
  margin-bottom: 20px; /* Space between reviews */
  padding: 15px;
  display: flex;
  flex-direction: column;
  border-radius: 10px; /* Ensure rounded corners */
  transition: all 0.3s ease;
}

.review-card:hover {
  background-color: #f5f5f5; /* Light hover effect */
}

/* Profile photo */
.profile-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

/* Review header with name */
.review-header {
  display: flex;
  align-items: center;
}

/* Review author name */
.review-author {
  font-weight: bold;
  font-size: 16px;
}

/* Review date */
.review-time {
  color: #888;
  font-size: 12px;
  margin-top: 5px;
}

/* Rating stars */
.review-rating {
  margin-top: 5px;
  color: #ffd700; /* Gold color for stars */
}

/* Review text container */
.review-text {
  margin-top: 10px;
}
.review-text-scroll {
  max-height: 100px;       /* Height of the scrollable container */
  overflow-y: auto;        /* Enable vertical scrolling */
  padding-right: 10px;     /* Optional: add padding to prevent text from touching the scrollbar */
  word-wrap: break-word;   /* Prevent long words from breaking the layout */
}
/* Shortened text style */
.short-text {
  display: inline;
  /*color: #333;*/
  font-size: 14px;
}

/* Full text style (hidden by default) */
.full-text {
  display: none;
  color: #333;
  font-size: 14px;
}

/* Read More link */
.read-more {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

.read-more:hover {
  text-decoration: underline;
}

/* Adjustments for long texts */
.review-text a.read-more {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
}

/* Optional: Add border to each review item */
.review-item {
  border: 1px solid #ddd;
}

/* Make the review container responsive */
@media (max-width: 768px) {
  .review-item {
      padding: 10px;
  }

  .review-header {
      flex-direction: column;
      align-items: flex-start;
  }
}
/*****************************************
Grid 
*****************************************/
/* Grid layout for reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Flexible columns */
  gap: 20px; /* Spacing between cards */
  padding: 20px;
}

/* Individual review card */
.review-card {
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional subtle shadow */
  transition: transform 0.3s ease-in-out;
}

/* Hover effect for cards */
.review-card:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Review header - profile image and author name */
.review-header {
  display: flex;
  align-items: center;
}

.profile-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.review-author {
  font-weight: bold;
}

/* Review time styling */
.review-time {
  margin-top: 5px;
  font-size: 14px;
  color: #777;
}

/* Review rating styling */
.review-rating {
  margin-top: 10px;
}

/* Review text (short and full) */
.review-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.short-text {
  display: inline-block;
}

.full-text {
  display: none;
  font-size: 14px;
  line-height: 1.5;
}

/* Read More link styling */
.read-more {
  display: inline-block;
  margin-top: 5px;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .review-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjust for tablets */
  }
}

@media (max-width: 480px) {
  .review-grid {
      grid-template-columns: 1fr; /* Stack the cards on small screens */
  }
}

/*******************************
Badge
********************************/
/* Base styling for all badges */
.badgee{
  
}
.badgee-content{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
    gap: 20px;
}
.review_badg_all_container{
  display: flex;
    /* width: 17%; */
    flex-direction: row;
    gap: 20px;                                        
}
.review_badg_container{
  width: 100%;
  /* margin: 5% 24% 10%; */
  padding: 20px;
}
.review-badge {
  width: 200px;                /* Adjust as needed */
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fff;
  margin: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease;
  text-align: center;
  margin :0px auto;
}
.review-badge a {
  display: block;
  color: inherit;              /* so text color is unchanged */
  text-decoration: none;       /* remove link underlines */
  padding: 16px;               /* padding inside the card */
}
.review-badge:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.google-logo {
  width: 60px;                 /* Adjust logo size */
  height: auto;
  margin-bottom: 8px;
  display: block;
}

/* ---------- Style 1 ---------- */
.review-badge.badge1 .rating-line {
  font-size: 1rem;
  font-weight: bold;
}

/* ---------- Style 2 ---------- */
.review-badge.badge2 .badge-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}
.review-badge.badge2 .rating-stars {
  font-size: 1.2rem;
  color: #f39c12; /* gold for stars */
}

/* ---------- Style 3 ---------- */
.review-badge.badge3 .stars-only {
  font-size: 1.3rem;
  color: #f39c12;
  margin-bottom: 4px;
}
.review-badge.badge3 .review-count {
  font-size: 0.9rem;
  color: #555;
}

/* ---------- Style 4 ---------- */
.review-badge.badge4 .numeric-rating {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}
.review-badge.badge4 .stars-inline {
  font-size: 1.2rem;
  color: #f39c12;
  margin-bottom: 4px;
}
.review-badge.badge4 .review-count {
  font-size: 0.9rem;
  color: #555;
}

/*****************************************
POPUP
******************************************
/* Common popup styling */
.popupp-content{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
  gap: 20px;
}
.review-popup {
  display: inline-block;
  text-align: center;
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s ease;
  margin:5% 35%;
  padding: 20px;
  /* width, padding, etc. can be overridden in .popup1, .popup2, etc. */
}
.review_pop_container{
  width:100%;
}
.review-popup:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* The link that wraps the content */
.review-popup a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 10px;
}

/* Container for the inner elements (logo, rating, stars, count) */
.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Google logo */
.popup-content .google-logo {
  width: 50px;
  height: auto;
  margin-bottom: 8px;
}

/* Numeric rating (e.g. "4.0") */
.popup-content .numeric-rating {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 4px;
}

/* Stars in a row (★ or ☆) */
.popup-content .stars-inline {
  font-size: 1.2rem;
  color: #f39c12;
  margin-bottom: 6px;
}

/* Review count text */
.popup-content .review-count {
  font-size: 0.9rem;
}

/******* popup1 – Minimal Box ***********/
.popup1 {
  width: 20%;
  border-radius: 8px;
  background-color: #fafafa;
}
.popup1 a {
  padding: 16px;
}
.popup1 .google-logo {
  width: 60px;
}
.popup1 .numeric-rating {
  font-size: 1.3rem;
}
/******** popup2 – Larger Box, Subtle Background ************/
.popup2 {
  width: 20%;
  border-radius: 8px;
  background-color: #fafafa;
}
.popup2 a {
  padding: 16px;
}
.popup2 .google-logo {
  width: 60px;
}
.popup2 .numeric-rating {
  font-size: 1.3rem;
}
/******** popup3 – Floating at Bottom Right ************/
/*.popup3 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;          
  width: 200px;
}
.popup3 a {
  padding: 12px;
}
.popup3 .numeric-rating {
  color: #d9534f;         
}*/

/******** popup4 – Emphasized Rating ************/
.popup3 {
  width: 25%;
  border: 2px solid #ccc;  /* Slightly thicker border */
  border-radius: 8px;
}
.popup3 a {
  padding: 14px;
}
.popup3 .numeric-rating {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 2px;
}
.popup3 .stars-inline {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.popup4 .review-count {
  font-size: 1rem;
  color: #444;
}
/****** popup Review Container ********/
/* Popup styling */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* display: none; */           
    justify-content: center;
    align-items: center;                                     
}                                                               
                             
 .popup-review-content {
    position: relative; /* Added relative positioning to the content to position the close button */
    background-color: white;
    padding: 20px;                            
    /* width: 69%; */
    max-width: 600px;                    
    border-radius: 10px;
    margin: 5% auto;
}

.pop_cont_header{         
   display: block;
    border-bottom: 1px solid #ccc;
    margin: 10px 0px 16px 12px;
}
.pop_cont_header img{
  float:left;
}
.popup-review-list .review-count{
  border-bottom: 1px solid #CCC;
    margin-bottom: 20px;
}
.popup #review-list-container {
    overflow-y: auto;
    max-height: 400px;
}
.pop_cont_header .stars-inline{
  color:#ffd700;
}
/* Style for the Close button */
#closePopup , .closePrePopup ,.closeWidPopup , #closeFrontPopup{
  position: absolute;
  top: -12px;
  right: 5px;
  background-color: #f44336;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
}

/* Optional: Change color on hover */
#closePopup:hover ,#closePrePopup:hover ,#closeWidPopup:hover , #closeFrontPopup:hover{
    background-color: #d32f2f;
}
.popup-review-list {
    list-style-type: none;
    padding: 0;
    margin: 0px auto;
    width: 93%;
}

.popup-review-list .review-card {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

 .review-header {
    display: block;
    align-items: center;
}

.review_header_top{
  display: flex

}
.popup-review-list .review-time{
  margin:-14px 0px 8px 18%;
}
 .profile-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

 .review-author {
    font-weight: bold;
}

 .review-time {
    font-size: 12px;
}
 .review-rating {
    margin-top: 5px;
    font-size:24px;
}

 .read-more {
    color: blue;
    cursor: pointer;
}

 .close-btn {
    margin-top: 20px;
    background-color: #ff4c4c;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;       
    cursor: pointer;
}                                                  
                 
.popup_slider {
  position: fixed;
  top: 0;
  right: 0; /* Move the popup to the right */
  width: 400px; /* Adjust the width of the popup */
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  box-shadow:  4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-start; /* Align content to the left inside the popup */
  align-items: flex-start; /* Align content to the top inside the popup */
  transition: transform 0.3s ease-in-out;
    transform: translateX(0%); /* Initially positioned off-screen to the right */
}                               
.popup.show {
  transform: translateX(0);                        
}  
.popup_slider #review-list-container{
  max-height:550px ;
  overflow-y: auto;
}
  /********************************
  google_review_style.php
  **********************************/
  /* Container styling for the whole form */
#layout_form_style {
  width:100%;
  margin: 20px auto;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Heading styling */
#layout_form_style p {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

/* Create a two-column layout for the form groups */
.form_left,
.form_right {
  width: 46%;
  box-sizing: border-box;
  float: left;
  padding: 10px;
}

/* Add some space between the two columns */
.form_left {
  margin-right: 4%;
}

/* Clear floats after the two columns */
#layout_style::after {
  content: "";
  display: table;
  clear: both;
}

/* Form group styling */
.form-group {
  margin-bottom: 15px;
  display: flex;
}

.form-group label {
  display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    width: 80%;
}

.form-group input[type="color"],
.form-group input[type="number"] {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-group input[type="number"] {
  width: 93%;
}

/* Submit button styling */
.submit-btn {
  display: block;
  width: auto;
  background-color: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin: 20px auto 0;
}

.submit-btn:hover {
  background-color: #005c87;
}


/* Customizing the scrollbars for webkit browsers (Chrome, Safari, Edge) */
#review-text-container::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

#review-text-container::-webkit-scrollbar-track {
  background: #f1f1f1; /* Track background */
  border-radius: 8px;  /* Optional: adds rounded corners to the scrollbar track */
}

#review-text-container::-webkit-scrollbar-thumb {
  background: #888; /* Color of the scrollbar thumb */
  border-radius: 8px; /* Optional: adds rounded corners to the scrollbar thumb */
}

#review-text-container::-webkit-scrollbar-thumb:hover {
  background: #555; /* Color of the scrollbar thumb on hover */
}

/* For Firefox */
#review-text-container {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

/* Copy shortcode to Clipboard */
.shortcode_widget h6{
  border-bottom: 1px solid #ccc;
  padding: 0px 0px 10px 0px;
}

.shortcode_widget span{
  font-size: 13px;
  color: #aaa;
}
.shortcode_widget p{
  font-size: 14px;
  margin-bottom: -8px !important;
}
.egs-cgrw-copy-shortcode {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.egs-cgrw-copy-shortcode input {
  width: 35% !important;
  padding: 6px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  margin-right: 10px !important;
}

.egs-cgrw-copy-shortcode button {
  font-size: 14px !important;
  background: green !important;
  padding: 8px 20px !important;
  border-radius: 5px !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

.egs-cgrw-copy-shortcode button:hover {
  background-color: #195b19 !important;
}
#copy-status {
  display: block;
  background-color: #eee;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0px 40px;
  font-size: 16px;
  color: green;
  font-weight: bold;
}
#tick-icon {
  margin-right: 5px;
  color: green;
}
#copied-text {
  display: inline-block;
}