.create-options{
  border-bottom: 2px solid var(--color-border-S360);

  .add-option{
    font-size: 20px;
  }

  .option-add{
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: var(--border-radius-S360);
    cursor: pointer;
    background: var(--background-S360);
    transition: background 0.3s ease;
    user-select: none;
    padding-right: 25px;
    color: var(--color-text-S360);

    &:hover{
      background: var(--background-item-hover-secundary-S360);
    }
  }
}

.container-create-rol{
    z-index: 10;
    position: absolute;
    min-width: 250px;
    width: max-content;
    min-width: 100%;
    max-width: 700px;
    height: fit-content;
    margin-top: 5px;
    padding: 5px;
    transition: opacity 0.3s ease, visibility 0.2s ease;
    visibility: hidden;
    align-items: center;
    padding: 0 10px;
    border-radius: var(--border-radius-S360);
    background: var(--background-S360);
    color: var(--color-text-S360);
    border: 0.5px solid var(--color-border-S360);
    left: 120%;
    top: 75px;


  .title-create{
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-weight: 600;
  }

  .create-box{
    padding: 4px;
    display: flex;
    gap: 5px;

    .container-input{
      width: 170px;
    }

    .container-button{
      display: flex;
      align-items: center;

      button{
        all: unset;
        right: 5px;

        .collapse-icon {
          cursor: pointer;
          font-size: 13px;
          border-radius: 50%;
          padding: 1px;
          background-color: #139A47;
        }
      }
    }

  }
}

.container-create-rol.active {
  visibility: visible;
}

@keyframes pulse-error {
  0% {
    border-color: red;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  }
  25% {
    border-color: darkred;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  }
  50% {
    border-color: red;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  }
  75% {
    border-color: darkred;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
  }
  100% {
    border-color: red;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  }
}

.pulse-error {
  animation: pulse-error 1s ease-in-out;
}

