.repeatable-element {
  border: 1px solid rgba(0,40,100,.12);
  border-radius: 5px;
  background-color: #f0f3f94f;
  position: relative;
}
.container-repeatable-elements .controls {
    display: flex;
    align-content: flex-start;
    position: absolute;
    left: -1.4rem;
    z-index: 2;
    flex-flow: column;
    flex-wrap: wrap;
    width: fit-content;
}

.container-repeatable-elements .controls button {
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    margin-bottom: 2px;
    overflow: hidden;
    border-width: 0;
    opacity: 1;
    background: revert;
    -webkit-appearance: button;
    font-size: revert;
    color: revert;
    padding: revert;
}

.container-repeatable-elements .controls button.move-element-up,
.container-repeatable-elements .controls button.move-element-down {
    margin: 2px auto;
}
.container-repeatable-elements .repeatable-element:first-of-type .move-element-up,
.container-repeatable-elements .repeatable-element:last-of-type .move-element-down {
    display: none;
}

      