main {
    background-color: #fff;
}
    .cd-top-header{
      background:#fff;
      border-bottom:1px solid #e5e5e5;
      padding:20px 0;
    }

    .cd-logo{
      font-size:25px;
      font-weight:700;
      color:#000;
      display:flex;
      align-items:center;
      gap:10px;
    }

    .cd-logo span{
      font-weight:400;
      font-size:20px;
    }

    .cd-logo-icon{
      width:42px;
      height:42px;
      border-radius:50%;
      background:#18b7b0;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:20px;
    }

    .cd-business-btn{
      border:2px solid #000;
      padding:5px 25px;
      background:#fff;
      color:#000;
      text-decoration:none;
      font-size:18px;
      font-weight:600;
      border-radius:4px;
      transition:0.3s;
    }

    .cd-business-btn:hover{
      background:#000;
      color:#fff;
    }

    /* =========================
       REVIEW SECTION
    ==========================*/
    .cd-review-section{
      background:#f7f7f7;
      padding:25px 0;
    }

    .cd-review-title{
      font-size:25px;
      font-weight:700;
      margin-bottom:20px;
      color:#000;
    }

    .cd-review-rating{
      font-size:18px;
      font-weight:500;
      color:#000;
    }

    .cd-review-count{
      font-size:18px;
      font-weight:500;
      margin-left:15px;
      color:#000;
    }

    .cd-company-review-link{
      display:inline-flex;
      align-items:center;
      gap:12px;
      margin-top:80px;
      text-decoration:none;
      color:#000;
      font-size:20px;
      font-weight:500;
    }

    .cd-company-review-link i{
      font-size:32px;
      color:#18b7b0;
    }

    /* =========================
       PROGRESS CIRCLE
    ==========================*/
    .cd-progress-wrapper{
      text-align:center;
    }

    .cd-progress-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#18b7b0 100%, #ddd 0%);
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-progress-circle::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #f7f7f7;
    border-radius: 50%;
}

    .cd-progress-content{
      position:relative;
      z-index:2;
    }

    .cd-progress-content h2{
      font-size:38px;
      color:#18b7b0;
      margin:0;
      font-weight:700;
    }

    .cd-progress-content h2 span{
      font-size:30px;
    }

    .cd-progress-text{
      margin-top:25px;
      font-size:18px;
      color:#000;
      line-height:1.5;
    }

    .cd-progress-text strong{
      display:block;
      font-weight:700;
      margin-top:5px;
    }

    /* =========================
       RESPONSIVE
    ==========================*/
    @media(max-width:768px){

      .cd-top-header{
        text-align:center;
      }

      .cd-logo{
        justify-content:center;
        font-size:34px;
      }

      .cd-logo span{
        font-size:24px;
      }

      .cd-business-btn{
        margin-top:20px;
        display:inline-block;
      }

      .cd-review-title{
        font-size:32px;
      }

      .cd-review-rating,
      .cd-review-count{
        font-size:20px;
      }

      .cd-company-review-link{
        margin-top:40px;
        font-size:22px;
      }

      .cd-progress-circle{
        width:190px;
        height:190px;
        margin-top:50px;
      }

      .cd-progress-circle::before{
        width:140px;
        height:140px;
      }

      .cd-progress-content h2{
        font-size:42px;
      }

      .cd-progress-text{
        font-size:18px;
      }
    }

    .mm-metrics-card{
      background:#fff;
      border:1px solid #d9d9d9;
      border-radius:14px;
      padding:20px;
    }

    /* =========================
       HEADINGS
    ==========================*/
    .mm-main-title{
      font-size:22px;
      font-weight:700;
      color:#000;
    }

    .mm-section-title{
      font-size:18px;
      font-weight:700;
      color:#000;
      margin-bottom:20px;
    }

    /* =========================
       METRIC ROWS
    ==========================*/
    .mm-metric-row{
      margin-bottom:28px;
      align-items:flex-start;
    }

    .mm-label{
      font-size:15px;
      color:#000;
      line-height:1.4;
    }

    .mm-value{
      font-size:15px;
      color:#000;
      line-height:1.4;
    }

    .mm-bold-value{
      font-weight:700;
    }

    /* =========================
       BADGES
    ==========================*/
    .mm-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

    .mm-badge-success{
      background:#1eb6ad;
    }

    .mm-badge-warning{
      background:#f0a22f;
    }

    /* =========================
       SECTION SPACING
    ==========================*/
    .mm-section-space{
      margin-top:20px;
    }

    /* =========================
       RESPONSIVE
    ==========================*/
    @media(max-width:768px){

      .mm-metrics-card{
        padding:25px;
      }

      .mm-main-title{
        font-size:30px;
      }

      .mm-section-title{
        font-size:24px;
      }

      .mm-label,
      .mm-value{
        font-size:20px;
      }

      .mm-badge{
        font-size:16px;
        padding:8px 14px;
      }

      .mm-metric-row{
        margin-bottom:22px;
      }
    }
	
	.ccd-section-wrapper{
      padding:20px 0;
    }

    /* =========================
       CARD
    ==========================*/
    .ccd-info-card{
      background:#fff;
      border:1px solid #dddddd;
      border-radius:14px;
      padding:20px;
      box-shadow:0 2px 6px rgba(0,0,0,0.03);
    }

    /* =========================
       BUTTON
    ==========================*/
.ccd-visit-btn {
    width: 100%;
    height: 40px;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    margin-bottom: 20px;
}

    .ccd-visit-btn:hover{
      background:#000;
      color:#fff;
    }

    /* =========================
       CONTENT
    ==========================*/
    .ccd-info-group{
      margin-bottom:15px;
    }

    .ccd-info-title{
      font-size:18px;
      font-weight:700;
      color:#000;
    }

    .ccd-info-text{
      font-size:15px;
      color:#000;
      line-height:1.6;
      word-break:break-word;
    }

    .ccd-email-link{
      color:#000;
      text-decoration:none;
    }

    .ccd-email-link:hover{
      text-decoration:underline;
    }

    /* =========================
       RESPONSIVE
    ==========================*/
    @media(max-width:768px){

      .ccd-info-card{
        padding:25px;
      }

      .ccd-visit-btn{
        font-size:24px;
        height:60px;
      }

      .ccd-info-title{
        font-size:22px;
      }

      .ccd-info-text{
        font-size:20px;
      }
	  .review_card .reply .user_info {
        display: unset;
    }
    }
	
	
	
.ux-review-btn {
    background-color: #2ecc71;
    border: none;
    padding: 6px 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

        .ux-review-btn:hover {
            background-color: #28b765;
        }

.ux-review-text {
    margin-top: 10px;
    color: #8b8b8b;
    font-size: 15px;
    letter-spacing: 0.3px;
}

        .ux-review-text strong {
            color: #6f6f6f;
            font-weight: 700;
        }

        .ux-review-rating {
            color: #f39c12;
            font-weight: 500;
        }

i.bi.bi-star-fill {
    font-size: 10px;
    margin-left: 2px;
}

i.bi.bi-star {
    font-size: 10px;
    margin-left: 2px;
	background: #ccc;
}		

.review_card {
    border-radius: 12px;
    box-shadow: unset;
    border: 1px solid #edecec;
}

.user_info {
    text-align: center;
}
.admin_reply {
    padding-left: 50px;
}
