table {
  margin: 0;
  width: 100%;
}

a {
  color: #000;
}

ul li {
  display: flex;
  justify-content: space-between;
}

#btn-create {
  padding: 10px;
  border-radius: 100px;
  background: #c0ff04;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin: 0 0 0 auto;
  cursor: pointer;
}

.point {
  width: 15px;
  height: 15px;
  border-radius: 100px;
  margin: auto 3px auto auto;
}

.point.image-point{
  margin: 0 0 0 3px;
  border-radius: 0;
  cursor: pointer;
}

.point.image-point.first-placed-icon {
  width: 20px;
  position: absolute;
  left: -20px;
  cursor: help;
  height: 100%;
}

.form-connexion {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

tbody,
.tr {
  width: 100%;
}

.tr {
  display: flex;
  justify-content: space-between;
  position: relative;
}

#render {
  width: 100%;
}

.tr>div {
  width: 16%;
  padding: 4px 3px;
  overflow: hidden;
}

tr:nth-child(n+1) {
  border-bottom: 1px #c0ff04 solid;
}

thead,
tfoot {
  background-color: #333;
  color: #fff;
}

input,
select {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

*,
:before,
:after {
  box-sizing: border-box;
}

@-webkit-keyframes dash {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes dash {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

.hidden {
  display: none !important;
}

.div-block-3.createUser {
  position: fixed;
  width: auto;
  padding: 35px;
  background: rgba(255, 255, 255, 0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.div-block-3.createUser>form {
  padding: 35px;
  border-radius: 15px;
  background: #c0ff04;
}

#wrapper {
  display: flex;
  height: 10px;
  width: 40px;
  gap: 14px;
  margin: 0 0 10px 0;
  opacity: 0;
  position: fixed;
  right: 20px;
  top: 15px;
}

.step-item {
  flex: 1 1 0;
  width: 0;
  background: #333;
  border-radius: 15px;
}

.step-item.active {
  background: #000;
}

.step-item.loading {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.step-item.loading:before,
.step-item.loading:after,
.step-item.loading span {
  display: flex;
  position: absolute;
  transform: translateX(-100%);
  height: 100%;
  width: 100%;
  border-radius: 15px;
}

.step-item.loading span {
  -webkit-animation: dash 1.618s infinite cubic-bezier(0.4, 0, 1.0, 1.0);
  animation: dash 1.618s infinite cubic-bezier(0.4, 0, 1.0, 1.0);
  background-color: #000;
  z-index: 2;
}

.step-item.loading span:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
}

.step-item.loading:before {
  content: "";
  -webkit-animation: dash 1.618s infinite cubic-bezier(0.2, 0, 1.0, 1.0);
  animation: dash 1.618s infinite cubic-bezier(0.2, 0, 1.0, 1.0);
  background-color: #666;
  z-index: 1;
}

.step-item.loading:after {
  content: "";
  -webkit-animation: dash 1.618s infinite linear;
  animation: dash 1.618s infinite linear;
  background-color: #333;
  z-index: 0;
}

.button {
  margin-top: 20px;
  padding-top: 9px;
  padding-right: 40px;
  padding-bottom: 9px;
  padding-left: 40px;
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: black;
  border-right-style: solid;
  border-right-width: 2px;
  border-right-color: black;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: black;
  border-left-style: solid;
  border-left-width: 2px;
  border-left-color: black;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: hsla(208.00000000000003, 0.00%, 100.00%, 1.00);
  transition-property: background-color, color;
  transition-duration: 300ms, 300ms;
  transition-timing-function: ease, ease;
  color: hsla(0, 0.00%, 0.00%, 1.00);
  cursor: pointer;
}

.button:hover {
  background-color: black;
  color: white;
}

.links {
  transform: rotate(-90deg) translateX(100%);
  text-transform: uppercase;
  font-weight: bold;
}