* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.top-management__panel,
.clr-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid white;
  border-radius: 10px;
  background: linear-gradient(to right, #4568dc, #b06ab3);
  padding: 10px;
}
.top-management__panel {
  position: fixed;
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
}
.clr-wrapper {
  position: fixed;
  top: 50%;
  left: 0.7%;
  flex-direction: column;
  transform: translateY(-50%);
}

input,
button,
.clr {
  margin: 5px;
}
.clr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #000;
  transition: transform 0.2s;
}
.clr.active {
  transform: scale(1.35);
}
.clr:hover:not(.clr.active) {
  transform: scale(1.15);
}
.clr:nth-child(2) {
  background-color: red;
}
.clr:nth-child(3) {
  background-color: orange;
}
.clr:nth-child(4) {
  background-color: blue;
}
.clr:nth-child(5) {
  background-color: purple;
}
.clr:nth-child(6) {
  background-color: yellowgreen;
}
.clr:nth-child(7) {
  background-color: yellow;
}
.clr:nth-child(8) {
  background-color: #fff;
}

button {
  border: none;
  outline: none;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  background-color: #03bb56;
}
button:hover {
  cursor: pointer;
}
#save {
  background-color: #0f65d4;
}
#ageOutputId {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 650px) {
  .top-management__panel,
  .clr-wrapper {
    padding: 5px;
  }
  .clr-wrapper {
    position: fixed;
    top: auto;
    bottom: 1%;
    left: 50%;
    flex-direction: row;
    transform: translateX(-50%);
  }
}
