.page_container {
  display: flex;
  justify-content: center;
  align-content: center;
  grid-area: data;
  height: 100%;
  padding-bottom: 25px;
  box-sizing: border-box;
  max-width: 100vw;
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.15));
}
.page_item {
  display: flex;
  flex-direction: column ;
  justify-content: space-between;
  background-color: #FFFFFF;
  border-radius: 3px;
  width: 600px;
  padding: 25px;
  box-sizing: border-box;
}
.page_item .project_name{
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}
.page_item label {
}
.page_item input {
  border: 1px solid #BFC6C6;
  border-radius: 5px;
  height: 60px;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
  margin: 10px 0;
  color: #98A3A3;
  font-size: 16px;
  line-height: 24px;
}
.page_item input[type="checkbox"] {
  display: block;
  height: auto;
  margin: .25rem 1rem 0 0;
  padding: 0;
  width: auto;
}
.page_item .js_upload {
  z-index: 0;
  position: relative;
  border: none;
  cursor: pointer;
}
.page_item .js_upload:before {
  content: "";
  border: 1px solid #BFC6C6;
  outline-offset: -10px;
  background-color: white;
  border-radius: 5px;
  height: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
  top: 0;
  left: 0;
  color: #98A3A3;
  font-size: 16px;
  line-height: 24px;
  position: absolute;
  z-index: 100;
  background-image: url(../img/file-upload.svg);
  background-repeat: no-repeat;
  background-position: 10%;
  background-size: 40px 40px;
}
.page_item .js_upload:after{
  content: attr(data_file);
  top: 0;
  left: 0;
  text-align: center;
  width: 50%;
  height: 50%;
  transform: translate(50%, 50%);
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  position: absolute;
  z-index: 101;
}
.page_item .actions {
  display: flex;
}
.page_item input[type=submit] {
  border: none;
  background-color: #222222;
  flex: 2;
  margin: 0 20px 0 0;
  color: #FFFFFF;
  cursor: pointer;
  transition: .1s ease-in box-shadow;
}
.page_item input[type=submit]:disabled {
  background-color: #808080;
}
.page_item input[type=submit]:hover,
.page_item input[type=submit]:focus,
.page_item input[type=submit]:active {
  box-shadow: #bfc6c6 0 2px 5px;
  transition: .1s ease-in box-shadow;
}
.page_item .actions a {
  border: 1px solid #bfc6c6;
  color: #bfc6c6;
  border-radius: 5px;
  flex: 1;
  font-size: 16px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  transition: .1s ease-in all;
}
.page_item .actions a:hover,
.page_item .actions a:focus,
.page_item .actions a:active {
  border-color: #222;
  color: #222;
  transition: .1s ease-in all;
}

