.plate{
    position: relative;
    width: 600px;
    height: 150px;
    border: 1px #1f1e33 solid;
    background-color: #00000000;
    margin: 10px;
    padding: 0 10px 10px 10px;
    box-sizing: border-box;
}
.plate:hover{
    background-color: #e5e5ff83;
}
#make{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    align-items: center;
    z-index: 10;
}
#make_back{
    height: 100%;
    width: 100%;
    background-color: #1f1e3325;
    z-index: 11;
}
#make_in{
    position: absolute;
    width: 620px;
    height: 50vh;
    top: 90px;
    right: 0;
    left: 0;
    bottom: 40px;
    background-color: #f6f4f7;
    border: 1px #1f1e33 solid;
    z-index: 12;
    margin: auto;
    overflow-y: auto;
}
#new_{
    position: absolute;
    bottom: 0;
}
#make_title,#make_detail{
    padding: 5px;
    resize: none;
}
input[type=button]{
    padding: 7px 10px 7px 10px;
    border-radius: 8px;
    border: 1px #1f1e33 solid;
    background-color: #e5e5ffa8;
    outline: none;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 40%);
}
input[type=button]:hover{
    padding: 7px 10px 7px 10px;
    border-radius: 8px;
    border: 1px #1f1e33 solid;
    background-color: #e5e5fff1;
    outline: none;
    box-shadow: none;
}
input[type=button]:focus{
    padding: 7px 10px 7px 10px;
    border-radius: 8px;
    border: 1px #1f1e33 solid;
    background-color: #e5e5ff;
    outline: none;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4) inset;
}
.balls-guruguru{
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: #00000000;
}
.ball {
  width: 50%;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  transform-origin: 100% 50%;
  left: 0;
}
.ball::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ball-1::before {
  animation: ball-guruguru 1s linear 0s infinite;
}
.ball-2 {
  transform: rotate(45deg);
}
.ball-2::before {
  animation: ball-guruguru 1s linear -0.125s infinite;
}
.ball-3 {
  transform: rotate(90deg);
}
.ball-3::before {
  animation: ball-guruguru 1s linear -0.25s infinite;
}
.ball-4 {
  transform: rotate(135deg);
}
.ball-4::before {
  animation: ball-guruguru 1s linear -0.375s infinite;
}
.ball-5 {
  transform: rotate(180deg);
}
.ball-5::before {
  animation: ball-guruguru 1s linear -0.5s infinite;
}
.ball-6 {
  transform: rotate(225deg);
}
.ball-6::before {
  animation: ball-guruguru 1s linear -0.625s infinite;
}
.ball-7 {
  transform: rotate(270deg);
}
.ball-7::before {
  animation: ball-guruguru 1s linear -0.75s infinite;
}
.ball-8 {
  transform: rotate(315deg);
}
.ball-8::before {
  animation: ball-guruguru 1s linear -0.875s infinite;
}
@keyframes ball-guruguru {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 6px;
    height: 6px;
    opacity: .2;
    margin-left: 7px;
  }
}