.modal {
  display: none; /* Ð¡Ñ…Ð¾Ð²Ð°Ñ‚Ð¸ Ð¼Ð¾Ð´Ð°Ð»ÑŒÐ½Ðµ Ð²Ñ–ÐºÐ½Ð¾ Ð·Ð° Ð·Ð°Ð¼Ð¾Ð²Ñ‡ÑƒÐ²Ð°Ð½Ð½ÑÐ¼ */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  padding: 50px 20px;
}

@media screen and (max-width: 600px) {
  .modal {
    padding: 50px 20px;
  }

  .modal-content {
    border: 1px solid #888;
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    overflow-y: auto;
  }
}

/* Ð’Ð¼Ñ–ÑÑ‚ Ð¼Ð¾Ð´Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ Ð²Ñ–ÐºÐ½Ð° */
.modal-content {
  background-color: #fefefe;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  max-width: 100%;
  max-height: 100% !important;
  height: 100%;
  overflow-y: auto;
}

/* ÐšÐ½Ð¾Ð¿ÐºÐ° Ð´Ð»Ñ Ð·Ð°ÐºÑ€Ð¸Ñ‚Ñ‚Ñ */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
