.container {
  display: flex;
  gap: 8px;
  cursor: pointer;
  .label {
    font-weight: 500;
    font-size: 16px;
    color: #89898a;
    text-align: left;
    line-height: 20px;
    transition: all 0.3s ease-in-out;
  }

  .arrowContainer {
    display: flex;
    align-items: center;
    .arrowLeft,
    .arrowRight {
      display: block;
      background-color: #89898a;
      height: 2px;
      width: 8.5px;
      border-radius: 1px;
    }
    .arrowLeft {
      transition: transform 0.3s ease-in-out;
      transform: rotate(45deg);
    }
    .arrowRight {
      margin-left: -3.5px;
      transition: transform 0.3s ease-in-out;
      transform: rotate(-45deg);
    }
  }
  .arrowContainerActive {
    .arrowLeft {
      transform: rotate(-45deg);
    }
    .arrowRight {
      transform: rotate(45deg);
    }
  }
}
.container:hover {
  .label {
    color: #ffffff;
  }
  .arrowContainer {
    .arrowLeft,
    .arrowRight {
      background-color: #ffffff;
    }
  }
}

.itemContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

  .item {
    display: flex;
    gap: 12px;
    width: 320px;
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease-in-out;

    .icon {
      width: 38px;
      height: 38px;
      object-fit: contain;
    }

    .itemInfo {
      display: flex;
      flex-direction: column;
      gap: 4px;
      .label {
        font-weight: bold;
        font-size: 14px;
        color: #ffffff;
        text-align: left;
        line-height: 18px;
      }
      & > .desc {
        font-size: 14px;
        color: #ffffff7f;
        text-align: left;
        line-height: 18px;
      }
    }
  }

  .item:hover {
    text-shadow: 0 0 50px #65dbff66;
    background-color: #667bff33;
  }
}
