#root {
  max-width: 800px;
  max-height: 850px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  flex-direction: column;
  /* overflow: hidden; */
  user-select: none;
  justify-content: flex-start;
  margin: auto;
  box-shadow: 0 1px 5px 2px #ececec;
  /* border-radius: 10px; */
}

#rootmid {
  margin: auto;
  text-align: center;
}

.imgPending {
  height: 100px;
  width: 100px;
}

@media screen and (max-width: 580px) {
  #root {
    height: 100%;
    width: 100%;
    max-height: 100%;
    max-width: 100%;
  }
}

@media only screen and (min-width: 680px) {
  #root {
    max-width: 800px;
    max-height: 645px;
    /* // margin: auto; */

    border-radius: 10px;
    box-shadow: 0px 1px 5px 2px #ececec;
  }
}

@media only screen and (max-height: 430px) {
  #root {
    height: 100%;
    top: 0px;
    transform: none;
    left: 0px;
    margin: auto;
    max-width: 100%;
  }
}
