/*Стили наведения на пункты Вопрос ответ*/
.t668__wrapper {
    background-color: #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.t668__wrapper:hover {
    border-radius: 20px;
    transform:scale(1.01);
    box-shadow: 0px 4px 10px 0px rgb(81 95 255 / 0.4);
}

/*Меняем фон карточки с неисправностями при наведении*/
.card-problema {
    border-radius: 20px;
    transition: all 0.3s ease;
}
.card-problema:hover {
    border-radius: 20px;
    transform:scale(1.01);
    box-shadow: 0px 4px 10px 0px rgb(81 95 255 / 0.4);
}
    
/*Иконка на кнопку-->*/
.button-new {
  /* Меняем цвет фона кнопки */
  background-color: #515fe1;
  /* Добавляем иконку */
  background-image: url(https://static.tildacdn.com/tild6136-6437-4062-a536-333532303263/apple.svg);
  /* Размер иконки */
  background-size: 22px;
  background-repeat: no-repeat;
  /* Отступ иконки от края кнопки и от текста */
  background-position: 30px center;
  /* Отступ текста от иконки */
  padding-left: 20px;
  /* Скругление углов */
  border-radius: 50px;
  /* Переходы */
  transition-property: background-color, background-position;
  transition-duration: 0.3s;
  transition-timing-function: linear;
}

.button-new:hover {
  /* Изменяем цвет фона кнопки при наведении */
  background-color: #ff9900;
  /* Изменяем позицию иконки при наведении */
  background-position: 30px center;
}