@value v-primary: #1114c0;
.root {
  position: relative;
}
.container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-top: 0;
  box-sizing: border-box;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
}

.item {
  position: relative;
  width: auto;
  min-width: 30px;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-width: 170px;
  padding: 3px;
}

.item:focus {
  outline: none;
}
.selected {
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.addButton {
  opacity: 0;
  height: 40px;
  border-radius: 0.2rem;
  display: flex;
  background: #fff;
  color: v-primary;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.2s ease-in-out;
  justify-content: center;
  align-items: center;
  margin: 0 40px;
  font-size: 16px !important;
}
.root:hover .addButton {
  opacity: 1;
}
.addButton svg {
  fill: v-primary;
}

.addButton:hover {
  box-shadow: 2px 2px 5px #aaaaaa;
}
.floatingBtn {
  width: 100px;
  gap: 10px;
  display: flex;
  border-radius: 0.2rem;
  background: transparent;
  display: flex;
  color: v-primary;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.2s ease-in-out;
  justify-content: center;
  align-items: center;
  position: absolute;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  padding:4px 10px 0 ;
}
.floatingBtn svg {
  fill: black;
}
.moveButton {
  height: 100%;
  width: auto;
  z-index: 5;
  background-color: #fff;
  opacity: 1;
}
.moveButton svg {
  width: 20px;
  height: 20px;
}

.moveButton svg {
  fill: rgb(0, 0, 0);
}
.moveButton svg:hover {
  fill: v-primary;
  opacity: 1;
}
.root:hover .moveButton {
  opacity: 1;
}

.onEnter {
  animation: onEnter 0.5s;
}
.contentEditable {
  text-align: center;
  min-width: 10px;
  width: 100%;
  outline: none;
  min-height: 10px;
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.helper,
.helper:active,
.button:active {
  cursor: grabbing !important;
}
.dropdown {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: fixed;
  display: block;
  width: 90px;
  height: 30px;
  border-radius: 2px;
  padding: 5px 3px;
  z-index: 999;
  animation: fade-in 0.5s;
}
.dropdownBody {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.dropdownItem {
  padding: 10px 10px;
}
.dropdownItem:hover {
  background: #f5f5f5;
}

@keyframes fade-in {
  from {
    opacity: 0;
    margin-top: 10px;
  }
  to {
    opacity: 1;
  }
}
