body {
  font-family: "Montserrat", sans-serif;
  padding: 0;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.review-page {
  padding: 0px 0;
  max-width: 96%;
  margin: 0 auto;
}

.review-content {
  background-color: #fff;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  display: block;
  max-width: 480px;
  width: 100%;
  margin: auto;
  
}

.restraunt-detail {
  background: rgb(158, 40, 31);
  background: -moz-linear-gradient(180deg, rgba(158, 40, 31, 1) 0%, rgba(200, 24, 10, 1) 96%);
  background: -webkit-linear-gradient(
  180deg
  , rgba(158, 40, 31, 1) 0%, rgba(200, 24, 10, 1) 96%);
    background: linear-gradient(
  180deg
  , rgba(158, 40, 31, 1) 0%, rgba(200, 24, 10, 1) 96%);
  display: flex;
  align-items: center;
  padding: 15px 25px;
  border-radius: 5px 5px 0 0;
    margin-top: -1px;
}
.res-image {
  width: 120px;
  height: 120px;
  margin-right: 15px;
  border: 2px solid white;
  border-radius: 50%;
  overflow: hidden;
}

.restraunt-detail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

hr {
    background: #cbcbcb;
    height: 1px;
    border: 0;
}

.restraunt-detail h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom:5px;
}

.restraunt-detail p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  max-height: 70%;
  margin: 0 auto;
}

.customer-review {
  margin-top: 35px;
  padding: 0 25px;
  
}

.customer-review p {
  color: #333333;
  font-size: 15px;
  font-weight: 500;
  margin: 0px 0 10px;
}
.smile-reviews {
  display: flex;
  align-items: center;
}
.radio-box{
  position: relative;
  margin-right: 10px;
}
.smile-reviews input {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  height: 0;
  width: 0;
}
.radio-box label{
	  width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    /* border: 1.5px solid transparent; */
	  justify-content: center;
    border-radius: 5px;
}
.radio-box label.active{
  border: 4px solid #000;
}

.radio-box input[type="radio"]:checked + label{ 
	 border-color:#a03025;
} 
.smile-reviews img {
    width: 50px;
    cursor: pointer;
    display: block;
    height: 50px;
}
.smile-reviews img:hover{
  opacity: 0.6;
}

.comment-btn{
  margin: 25px 0 25px;
  text-align: center;
}

.add-comment{
  margin-top: 30px;
  padding: 0 25px;
}
.add-comment label{
  color: #333333;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.add-comment .comment-section{
  height: 100px;
  resize: none;
  border-radius: 3px;
  border: 1px solid #cbcbcb;
  padding: 10px;
  width: 100%;
}

.review-btn {
  background-color: #a03025;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
.review-btn:hover{
  background-color: #000;
}
.rating1{
  background-color: #ce0f03;border-radius: 8px;
}
.rating2{
  background-color: #fb641b;border-radius: 8px;
}
.rating3{
  background-color: #ffba01;border-radius: 8px;
}
.rating4{
  background-color: #5ba929;border-radius: 8px;
}
.rating5{
  background-color: #3f7e01;border-radius: 8px;
}
.ratinglabel{
  font-size: 20px;color: #fff;font-weight: bold;
}

@media (max-width:767px){
  .res-image {
    width: 90px;
    height: 90px;
    min-width: 90px;
  }
  .restraunt-detail h4 {
      color: #fff;
      font-size: 18px;
  }
}