  .popup-reviews{
    display: none;
    align-items: center;
    justify-content: center;
  
    position: fixed;
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62,62,62,.9);
    z-index: 99999;    
  }  
  
  .popup-reviews__container{
    position: relative;
    
    width: 100%;
    max-width: 1160px;
    height: 676px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
  }
  
  .popup-reviews__button{
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    
    background-color: rgba(255,255,255,.5);
  
    border-radius: 50%;
  
    cursor: pointer;
    font-size: 32px;
  }

  .popup-reviews__button:hover{
    background-color: rgba(255,255,255,.8);
  }

  .popup-reviews__button.b-left{
    left: 0;
  }

  .popup-reviews__button.b-right{
    right: 0;
  }
  
  .popup-reviews__box-img{
    width: max-content;
  }
  
  .popup-reviews img{
    width: 100%;
    max-width: 1060px;
    max-height: 676px;
  }
  
  .review-list__title{
    margin-bottom: 11px;
    display: inline-block;
  }

  .review-list__date{
    margin-bottom: 21px;
    display: inline-block;
  }

  .review-list__text{
    margin-bottom: 16px;
  }

  .review-list__box-imgs{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .review-list__img{
    width: 142px;
    height: 107px;
    object-fit: cover;
    cursor: pointer;
  }
  
  @media (max-width: 550px){

    .review-list__box-imgs{
      gap: 15px 5px;
      justify-content: space-between;
    }

    .review-list__img{
      width: 48%;
    }

  } 









  .photo-name-container{
    margin-bottom: 22px;
  }

  .review-photo{
    margin-bottom: 15px;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 15px;
  }

  .review-photo__delete{
    font-size: 16px;
    padding-top: 1px;
  }

  .review-photo__delete:hover{
    color: red;
    cursor: pointer;
  }

  .photo-name-container__label{
    display: block;
    margin-bottom: 12px;
  }

  #myfile{    
    color: transparent;     
  }

  #myfile::file-selector-button{   
    /*content: "Выберите фото"; /* не работает */   
    border: none;
    background-color: #999999;
    padding: 10px 31px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
  }
  #myfile::file-selector-button:hover{
    background-color: #737373;
  }