.popup {
  position: fixed;
  height: 80vh;
  width: 50vw;
  top: 10vh;
  left: 25vw;
  z-index: 100;
  background-color: rgba(113, 112, 116, 0.95);
  visibility: hidden;
  border-radius: 10px;
}

.popup_config {
  position: fixed;
  height: 85vh;
  width: 90%;
  left: 5%;
  top: 10vh;
  z-index: 90;
  background-color: rgba(113, 112, 116, 0.95);
  visibility: hidden;
  padding: 10px;
  border-radius: 10px;
}

.popup select,
.popup textarea,
.popup input {
  width: 100%;
}

.popup_table {
  width: 100%;
}

.popup textarea {
  resize: none;
}

.align_bottom {
  position: absolute;
  bottom: 10px;
}

.align_bottom input {
  width: 200px;
}

.popup_close {
  font-size: 1.5em;
  cursor: pointer;
  position: absolute;
  right: -10px;
  top: -10px;
  border-radius: 100%;
  height: 30px;
  width: 30px;
  text-align: center;
  color: white;
  background-color: rgb(65, 65, 65);
  line-height: 1.2;
}

#popup_content {
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  height: 95%;
  width: 95%;
  color: white;
}

.popup_show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

.body_unscrollable {
  overflow: hidden;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#popup_config_content textarea {
  width: 100%;
  resize: none;
  height: 73vh;
  border-radius: 5px;
}

#popup_delete {
  position: fixed;
  height: 200px;
  width: 30vw;
  top: 20vh;
  left: 35vw;
  z-index: 120;
  background-color: rgba(113, 112, 116, 0.95);
  border-radius: 10px;
  padding: 10px;
  color: white;
}
#popup_delete button {
  margin: 2px;
}

#popup_delete h1 {
  margin-bottom: 12px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

input[type="checkbox"] {
  min-width: 20px;
}
