/* phpcs:ignore */
.mx-auto {
  margin: 0 auto !important;
}

.rating {
  display: flex;
}

.rating input {
  position: absolute;
  left: -100vw;
}

.rating label {
  background-image: url("../img/stars.svg");
}

.rating label {
  width: 25px;
  height: 25px;
  overflow: hidden;
  padding: 29px 0 0;
  background-repeat: no-repeat;
  background-position: top left;
  cursor: pointer;
  background-size: 75px;
}

.rating:not(:hover) input:indeterminate + label,
.rating:not(:hover) input:checked ~ input + label,
.rating input:hover ~ input + label {
  background-position: -25px 0;
}

.lb-m {
  margin-bottom: 10px;
  display: block;
}

.group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .feedback-form .img-fluid {
    display: none;
  }
}

.contact-c form {
  padding: 20px;
}

 .reviews-card{
        flex-direction: column;
        display: flex;
        gap: 10px;
        border: 1px solid #ccc;
        padding: 20px;
        border-radius: 5px;
        height:100%;
    }

    .reviews-card :is(.flex-rev-detl, .flex-rev-detl .flex-star){
        gap: 10px;
        flex-wrap:wrap
    }

    .reviews-card .flex-rev-detl .rev-bg-nm{
        font-size: 35px;
        background: var(--pc);
        color: var(--white);
        padding: 10px 15px;
        border-radius: 50%;
        height: 80px;
        width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reviews-card .flex-rev-detl .flex-rev-wrap{
        align-items: unset;
        flex-flow: column;
        gap: 8px;
    }

     .reviews-card .flex-rev-detl ul.flex-rating li:last-child{
        font-size: 13px;
        color: #929292;
     }
    
    .reviews-card .flex-rev-detl .date{
        color: #929292;
        font-size: 14px;
    }

    .reviews-card p{
        color: var(--black)
    }

    .reviews-card .title{
        font-size: 18px;
        font-weight: 600
    }
