.new-exchange-container {
  .option-wrapper {
    width: 100%;
    display: flex;

    button {
      width: 100%;
      height: 35px;
      border-radius: unset;
      &:nth-of-type(1) {
        border-radius: 3px 0 0 0;
      }
      &:nth-of-type(2) {
        margin-left: unset;
        border-radius: 0 3px 0 0;
      }
    }
    &.pc {
      display: flex;
      justify-content: flex-end;
      button {
        width: 80px;
        height: 30px;
        border-radius: 6px;
        &:nth-of-type(2) {
          margin-left: 10px;
        }
      }
    }
    &.mo {
      display: none;
    }
  }
}

@media (max-width: 1024px) {
  .new-exchange-container {
    .section-6 {
      .option-wrapper {
        position: sticky;
        bottom: -2px;

        button {
          font-size: 1.2rem;
        }
        &.pc {
          display: none !important;
        }
        &.mo {
          display: flex;
        }
      }
    }
  }
}

@media (max-width: 1024px) and (min-height: 600px) and (max-height: 700px) {
  .new-exchange-container {
    .mo-section6 {
      .statement-container {
        height: calc(100vh - calc(34vh - 0vh));
      }
    }
  }
}

@media (max-width: 1024px) and (min-height: 500px) and (max-height: 600px) {
  .new-exchange-container {
    .mo-section6 {
      .statement-container {
        height: clamp(285px, 59vh, 390px);
      }
    }
  }
}
