.lvl-1 {
  display: flex;
  /* justify-content: space-between; */
  justify-content: stretch;
  position: relative;
  height: calc(98% - 35px);
  width: 98%;
  padding: 30px 1vw 5px 1vw;
  overflow: hidden;

  /* background-color: #ff0000; */
  border-radius: 20px;
}
.lvl-1 h2 {
  position: absolute;
  top: 0px;
  left: 10px;
  margin: 0;
}
.lvl-2 {
  display: block;
  position: relative;
  height: 150px;
  width: 100%;
  /* background-color: #00ff00; */
  border-radius: 10px;
  /* opacity: 0.8; */
  /* padding: 2px; */
}
.lvl-2:hover {
  border: solid 3px #ea2b2b;
  /* padding: 0; */
  height: 144px;
}
.lvl-2 h2 {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100px;
  text-align: center;
}
.own-lvl-2 {
  display: block;
  /* position: relative; */
  /* float: left; */
  width: 150px;
  margin: 0 20px 30px 0;
}
.own-lvl-2 h2 {
  position: relative;
  left: 0;
  font-size: 16px;
  width: 100%;
  text-align: center;
}
.lvl-3 {
  float: left;
  margin: 4% 0 0 4%;
  height: 28%;
  width: 28%;
  border-radius: 5px;
  pointer-events: none;
  /* background-color: #0000ff; */
}
.lvl-3 h2 {
  display: none;
}
.folders {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  align-items: baseline;
  overflow-y: auto;
  /* float: left; */
  /* width: auto; */
}
.files {
  float: left;
  display: block;
  max-width: 30vw;
  margin-right: 10px;
  overflow-y: auto;
}
.files a {
  display: block;
  padding: 5px;
  margin: 0 5px 10px 0;
  text-decoration: none;
  /* text-align: right; */
  background-color: #ffffff;
  color: #000000;
  border-radius: 10px;
}
.files a:hover::before {
  content: "";
  display: block;
  float: right;
  background-color: #ea2b2b;
  height: 15px;
  width: 15px;
  border-radius: 10px;
  margin: 3px 0 0 3px;
}
.imitation {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.block-control {
  position: fixed;
  right: 15px;
  top: 15px;
  background-color: #ffffff;
  border-radius: 10px;
  z-index: 90;
}
.add-btn {
  position: relative;
  margin: 3px 0 0 3px;
  cursor: pointer;
}
.add-btn::after,
.add-btn::before {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  top: 10px;
  height: 2px;
  width: 18px;
  background-color: #000000;
}
.add-btn::before {
  transform: rotate(90deg);
}
.own-all {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 95;
}
.add-btn-form {
  position: fixed;
  left: 30vw;
  top: 40vh;

  width: 40vw;
  background-color: #ffffff;
  z-index: 90;
  opacity: 1;
  padding: 10px 10px 35px 10px;
}
#new_name {
  display: block;
}
.add-btn-form label {
  margin-right: 10px;
}
.add-btn-form div {
  margin-top: 10px;
  position: relative;
}
#new_file {
  margin-top: 10px;
}
#ok,
#cancel {
  position: absolute;
  top: 0;
  height: 25px;
  width: 15vw;
}
#ok {
  left: 4vw;
}
#cancel {
  right: 4vw;
}
.authorization {
  position: fixed;
  padding: 10px;
  margin: 0;
  height: 170px;
  width: 500;
  top: calc(50vh - 150px);
  left: calc(50vw - 250px);
  background-color: #62fa88;
  border-radius: 10px;
  box-shadow: 0 0 20px 20px #62fa88;
  text-align: center;
  color: #620d9e;
}

.authorization input {
  display: block;
  margin: 5px 0;
  width: 80%;
  box-sizing: border-box;
  margin-left: 10%;
  height: 40px;
  border: solid 2px #62fa88;
  padding: 0 10px;
  border-radius: 15px;
}
.authorization input:focus,
.authorization input:active {
  outline-color: #9c12ff;
}
.authorization button {
  width: 100px;
  height: 40px;
  border: none;
  cursor: pointer;
  background: #9c12ff;
  border-radius: 30px;
  box-shadow: 0 4px 0 0px #620d9e;
  color: #62fa88;
}
.authorization button:hover {
  box-shadow: none;
  margin-top: 4px;
}
.hidden {
  display: none;
}
