dialog {
  position: fixed;
  z-index: 600;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* Спочатку приховано */
  align-items: center;
  justify-content: center;
  border: none;
}
.modal {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  width: 600px;
  height: 280px;
  border-radius: 20px;
  border: 2px solid rgb(230, 66, 66);
  padding: 20px;
  white-space: normal;
  background-color: #fff;
  color: #000;
}
.modal-add-img {
  width: 160px;
  height: 160px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.modal-add-img > img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}
.modal-info {
  padding: 0 10px 0 16px;
  display: flex;
  align-items: center;
  height: 120px;
  line-height: 1.75;
  font-size: 20px;
  color: var(--color-blue);
}
@media screen and (max-width: 800px) {
  .modal {
    width: 320px;
    height: 220px;
    padding: 10px;
  }
  .modal-add-img {
    width: 100px;
    height: 100px;
  }
  .modal-info {
    height: 100px;
    padding: 0 5px;
    font-size: 17px;
    line-height: 1.4;
  }
}
