.drawer_wrap {
  display: flex;
  height: 100%;

  &__left {
    padding: 12px;
    border-right: 1px solid #ECEFF4;
    transition: border-color 0.3s ease-in-out;
  }

  &__right {
    width: 100%;
    transition: width 0.3s ease-in-out;

    &__title {
      padding: 16px 24px;
      display: flex;
      justify-content: space-between;
      font-weight: 500;
      font-size: 18px;
      color: #142A51;
      line-height: 25px;
      text-align: left;
      font-style: normal;
      border-bottom: 1px solid #ECEFF4;
      transition: border-color 0.3s ease-in-out, color 0.3s ease-in-out;
    }

    &__body {
      padding: 24px;
      transition: padding 0.3s ease-in-out;
    }
  }
}

.active_wrap {
  border-radius: 8px;
  font-weight: 400;
  font-size: 14px;
  color: #142A51;
  line-height: 20px;
  text-align: center;
  font-style: normal;
  white-space: nowrap;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;

  &__active {
    color: #004FD3;
    background: #E9F1FF;
    padding: 6px 14px;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  &__no_active {
    color: #142A51;
    background: #fff;
    padding: 6px 14px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  }
}

.cursor {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;

  &:hover {
    transform: rotate(90deg);
  }
}
