#app {
  display: grid;
  grid-template-rows: 100px 1fr 100px;
  grid-gap: 0px;
  height: 100vh;
  margin: 0;
  grid-template-areas: "A B C" "D E F" "G H I";
}
@media screen and (max-width: 450px) {
  #app {
    grid-template-rows: 70px 1fr 50px;
    grid-template-areas: "A A B B" "E E E E" "G G G G";
  }
}

.box-1 {
  grid-area: A;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

.box-2 {
  grid-area: B;
  display: flex;
  justify-content: flex-end;
  justify-items: flex-end;
  align-content: center;
  align-items: center;
  width: auto;
}

.box-2 div {
  margin-left: 2em;
}

.box-3 {
  grid-area: C;
}
@media screen and (max-width: 450px) {
  .box-3 {
    display: none;
  }
}

.box-4 {
  grid-area: D;
}
@media screen and (max-width: 450px) {
  .box-4 {
    display: none;
  }
}

.box-5 {
  grid-area: E;
}

.box-6 {
  grid-area: F;
}
@media screen and (max-width: 450px) {
  .box-6 {
    display: none;
  }
}

.box-7 {
  grid-area: G;
}

.box-8 {
  grid-area: H;
  display: flex;
  justify-content: flex-start;
  justify-items: flex-start;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 450px) {
  .box-8 {
    display: none;
  }
}

.box-9 {
  grid-area: I;
}
@media screen and (max-width: 450px) {
  .box-9 {
    display: none;
  }
}

.wr_new_ticket {
  width: 100%;
  max-width: 700px;
}
