.review-wrapper {
    width: 100%;
    display: grid;
    border-bottom: 1px solid #ededed;
  }
  .review-wrapper.border-bottom-0 {
    border: 0;
  }
  .review-wrapper.border-bottom-1 {
    border-bottom: 1px solid #ededed;
  }
  .review-wrapper.padding-l-r-12 {
    width: 100%;
    display: grid;
    padding: 0 12px;
  }
  .review-item-wrapper {
    /* float: right; */
    /* width: 100%; */
    padding: 16px 8px 16px;
    direction: rtl;
  }
  .reviewer-information {
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .reviewer-information .user-image {
    width: 24px;
    height: 24px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0;
  }
  .reviewer-information-wrapper {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .reviewer-information-wrapper .user-name {
    display:grid;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    color: #030303;
    height: 24px;
    line-height: 24px;
    padding-top: 0;
    white-space: nowrap;
    padding-right: 8px;
  }
  .reviewer-information-wrapper .user-city {
    color: #777777;
    margin-bottom: 10px;
  }
  .comment-date {
    font-size: 12px;
    color: #979797;
    margin-top: 12px;
  }
  .review-message {
    color: #777;
    line-height: 1.618;
  }
  .review-message > p {
    color: rgba(3, 3, 3, 0.8);
  }
  .rate-stars .stars-wrapper > span {
    position: relative;
    display: inline-block;
  }
  
  .rate-stars {
    display: flex;
    margin-bottom: 8px;
    position: relative;
    top: -10px;
  }
  
  .rate-stars.has-city {
    right: 0;
  }
  
  .rate-stars .stars-wrapper > span > span {
    display: block;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    width: 10px;
    text-align: center;
    margin-left: 5px;
    color: #777;
  }
  .rate-stars .stars-wrapper > span > svg {
    position: absolute;
    left: 3px;
    font-size: 1.2rem;
    z-index: 0;
    top: -2px;
    color: #bdc4cc;
  }
  .city-wrapper {
    margin-top: 5px;
    margin-bottom: 16px;
    height: 24px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: #757575;
    margin-right:2px
  }
  .city-wrapper svg {
    width: 20px;
    height: 20px;
  }
  .city-wrapper span {
    margin-right: 12px;
  }
  .review-likes {
    background: none;
    border: none;
    color: #777;
    margin-top: 15px;
    display:flex;
    align-items:center;
    gap: 8px;
  }
  .review-rate {
    text-align: left;
    padding: 0;
  }
  .review-likes.active svg {
    font-weight: 900;
  }
  
  .review-likes span.like-icon {
    display:flex;
    align-items:center;
  }
  .review-likes.active span.like-icon {
    color: #ff9828;
    display:flex;
    align-items:center;
  }
  .review-likes span.like-icon svg {
    width:20px;
  }
  .review-likes span.like-icon svg.active-like path {
    fill: #FF9828;
  }
  .review-likes-wrapper
  {
      display: flex;
      justify-content: left;
  }
  .review-likes-wrapper.owner-profile {
      display: flex;
      justify-content: space-between;
  }
  .review-likes-wrapper.owner-profile .review-likes {
    margin-top: 7px;
  }
  
  .review-likes-wrapper.owner-profile .delete-comment {
    margin-top: 3px;
    display: flex;
    justify-content:space-between;
  }
  .review-likes-wrapper.owner-profile .delete-comment svg{
    width: 24px;
  }
  .review-likes-wrapper.owner-profile .delete-comment svg.disable-icon path{
    fill: #dbdbdb;
  }
  .yellow-text {
    color: #f2c94c !important;
  }
  @media screen and (max-width: 768px) {
    .review-item-wrapper {
      border: 0;
      margin: 16px 8px;
      box-shadow: 0px 1px 8px rgb(0 0 0 / 10%);
      border-radius: 4px;
    }
    .review-wrapper{
      border: 0;
    }
    .rate-stars.no-text {
      margin-bottom: 0;
    }
    .reviewer-information-wrapper {
      margin-bottom: 16px;
    }
    .reviewer-information-wrapper .user-name.show-less {
    display:block;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 120px;
    overflow: hidden;
  }
    .review-text {
      height: 48px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 1.2rem;
      line-height:24px;
    }
    .review-text.no-height {
      height: auto;
    }
    .review-likes-wrapper
    {
      display: none;
    }
  }
  @media screen and (max-width: 767px) {
    .reviewer-information {
      border-left: none;
    }
  
    .reviewer-information-wrapper .user-name,
    .reviewer-information-wrapper .user-city {
      float: right;
      margin: 0;
    }
  
    .reviewer-information-wrapper .user-city {
      font-size: 13px;
    }
  
    .reviewer-information-wrapper .user-name {
      margin-left: 5px;
      
    }
  
    .reviewer-information-wrapper .comment-date {
      float: left;
      margin: 0;
      padding-left: 7px;
    }    
    .review-likes-wrapper.in-modal
    {
      display: flex;
    }
    .city-wrapper {
      display: none;
    }
    .review-item-wrapper.for-carusel {
      border: 0;
      padding: 16px 16px 0;
      box-shadow: 0 1px 8px rgb(0 0 0 / 10%);
      border-radius: 4px;
    }
  }