.p-cmm{

    line-height: 30px;
}
.cmm-answer{
  background-color: #eee;
  padding: 20px;
  border-radius: 15px; 
  font-size: 18px; 
    line-height: 20px;
}
.please-msg{
  margin: 0 0 15px 0;
  font-family: 'Roboto-Light'; 
    font-size: 18px; 
    line-height: 20px;
}
.snd-frm-button{
    overflow: auto;
    width: max-content;
    padding: 10px 20px;
    background: #f0961e;
    color: #fff;
    font-family: 'Roboto-Regular';
    font-size: 18px;
    line-height: 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}


.snd-frm-button-default{
    opacity: 0.5; /* Сделайте кнопку полупрозрачной */
    cursor: not-allowed; /* Измените курсор на "запрещено" */
    pointer-events: none; /* Предотвращает нажатие на кнопку, но она все еще видна*/

     overflow: auto;
    width: 186px;
    padding: 10px 20px;
    font-family: 'Roboto-Regular';
    font-size: 18px;
    line-height: 28px;
    border-radius: 10px;
}

.form-input-cmm{
    font-family: 'Roboto-Light'; 
    font-size: 18px; 
    height: 36px;
    width: calc(100% - 40px); 
    max-width: 300px;      
    padding: 0 20px 0 20px;
    cursor: text;
    outline: none;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 5px; 
    -webkit-appearance: none;
    margin-bottom: 15px;
}
.form-textarea-cmm{
   font-family: 'Roboto-Light'; 
    font-size: 18px; 
    height: 36px;
    width: calc(100% - 40px); 
    padding: 20px;
    cursor: text;
    outline: none;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 5px; 
    -webkit-appearance: none;
    margin-bottom: 15px;
    height: 150px;
    resize: none;
}

.snd-form{
  display: flex;
  flex-direction: column; /* Располагаем элементы в колонку */
}




.reviews-questions {
    padding: 10px;
    margin-top: 20px;
}

.tabs {
    display: flex;
}

.tab-button {
    font-family: 'Roboto-Regular';
     font-weight: 300;
     font-size: 22px;
     line-height: 32px;

    padding: 10px 20px;
    border: none;
    background-color: #fff;
    cursor: pointer;
}

.tab-button.active {
/*    background-color: #ddd;*/
border-bottom: 3px solid;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

.review {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.review p span{
  float: right;
}
p strong{
  font-weight: 1000;
}
/* Basic Rating Styles */
.rating {
    display: inline-block;
    padding: 5px 0;
/*    border: 1px solid rgba(0,0,0,.2);*/
/*    border-radius: 5px; */

    width: calc(100% - 40px); 
    max-width: max-content;
    margin-bottom: 15px;
}

.rating input {
    display: none;
}

.rating label {
    float: right;
    cursor: pointer;
    color: #ddd;
}

.rating label:before {
    content: '\2605'; /* 星の記号 */
    font-size: 45px;
}

.rating input:checked ~ label {
    color: #ffc107;
}

.rating label:hover,
.rating label:hover ~ label {
    color: #ffc107;
}

/* Style for stars */
.stars {
  color: #ffc107; /* Gold color */
}


.stars i.fa {  /* Targeting the Font Awesome icons within the .stars container */
    font-size: 24px;  /* Adjust the size as needed */
    color: #ffc107; /* Your gold color */
}

/* Optional: Style the empty star differently */
.stars i.fa-star-o {
    color: #ccc; /* A grey color for empty stars */
}