.oInputSlef {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  margin: auto;
  opacity: 0;
}

.oInput {
  display: flex;
  align-items: center;
  width: 100%;
  height: 32px;
  // padding: 0 11px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 2px;

  .text {
    position: relative;
    display: inline-block;
    min-width: 1px;
    height: 14px;
    margin: 0 auto;
    line-height: 14px;

    &.input_active::after {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      height: 100%;
      margin: auto;
      background: #333;
      opacity: 1;
      transition: none;
      animation: cursorActivited 1s infinite linear;
      content: '';
    }
  }
}

@keyframes cursorActivited {
  from {
    display: block;
    opacity: 1;
  }

  to {
    display: none;
    opacity: 0;
  }
}