body.active {
  overflow: hidden;
}
.modal-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.829);
  display: none;
}
.modal-wrap.active {
  display: flex;
}
.modal-window {
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 350px;
  border-radius: 10px;
  transition-property: all;
  transition-duration: 1s;
}
.modal-window p {
  margin: 0px;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-bottom: 1px solid rgb(172, 172, 172);
  width: 100%;
  background-color: rgb(246, 246, 246);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-size: 15px;
  height: 40px;
}
.modal-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-align: center;
  height: 300px;
  transition-property: all;
  transition-duration: 1s;
}
@media screen and (min-width: 1000px) {
  .modal-window {
    max-width: 600px;
    transition-property: all;
    transition-duration: 1s;
  }
  .modal-main {
    height: 600px;
    transition-property: all;
    transition-duration: 1s;
  }
}
.modal-main p {
  color: rgb(82, 82, 82);
  margin-bottom: 15px;
  padding-left: 25px;
  padding-right: 25px;
}
.modal-main img {
  width: 70px;
  margin-bottom: 10px;
}
.modal-computer {
  border: none;
  color: white;
  background-color: rgb(23, 151, 255);
  border-radius: 4px;
  height: 25px;
  width: 110px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}
.modal-close {
  width: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.input-file {
  display: none;
}
/* vw vh maxwidth */
#img-preview {
  width: 100%;
  height: 100%;
}
.modal-main.hide {
  display: none;
}
.modal-header.step2 {
  display: flex;
  justify-content: space-around;
}
.modal-header.step2 img {
  width: 20px;
}
.step2-next {
  color: blue;
}

.modal-header.hide {
  display: none;
}
