@use '../abstracts' as *;

/* Organism - Panel */
.o-panel {
  width: 100%;
  height: 100%;
  overflow: auto;

  > div {
    // height: 100%;

    &:nth-child(1) {
      padding: toRem(19) toRem(16) 0 toRem(16);
    }
    &:nth-child(n + 2) {
      padding: 0 toRem(16) toRem(19) toRem(16);
    }
  }

  &__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
    margin-bottom: toRem(20);

    .a-btn {
      transform: translateY(2px);
    }

    .a-h3 {
      padding-bottom: 0;
      padding-right: toRem(20);
    }
  }
}
