.section01-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
}

.section01-title h1 {
  font-size: clamp(1.5rem, 5vw, 10rem);
  font-weight: 600;
  width: 80%;
  text-align: center;
  padding: 0;
}

.section01-title p {
  font-size: clamp(6px, 5vw, 1rem);
  font-weight: 600;
  text-align: center;
  padding: 0 4rem;
}

/* inputarea */
.section01_input_area {
  width: clamp(100%, 5vw, 70%);
  /* height: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.input_section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 70%;
    height: 100%;
}

.trading {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem;
  border-radius: 10px;
  position: relative;
}

.trading p {
  padding: 0;
  margin: 0;
  font-size: clamp(1rem, 1vw, 2rem);
  color: #fff;
}

.trading input {
  width: 80%;
  font-size: 32px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  cursor: default;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.trading select {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(0,0,0,0.1);
  border: none;
  border-radius: 0 10px 10px 0;
  width: 20%;
  height: 100%;
  outline: none;
  cursor: pointer;
}

.trading_btn {
  width: 30%;
}

.trading_btn button {
  background: #09BFE3;
  width: 100%;
  height: 100%;
  padding: 2rem;
  border: none;
  box-shadow: 1px 1px 5px 0px #000;
  border-radius: 10px;
}

.trading_btn button:active {
  box-shadow: none;
}


/* tradingInfo */
.trading_info {
  width: 90%;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.trading_info p {
  margin: 0;
  padding: 0;
  font-size: clamp(0.7rem, 1vw, 1rem);
  font-weight: 600;
  position: relative;
}

.trading_info p:last-child, .trading_info span {
  padding: 0;
  margin: 0;
  position: relative;
  width: max-content;
  cursor: pointer;
}

.trading_info p:last-child::after, .trading_info span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  border-bottom: 2px dashed #09BFE3;
  pointer-events: none;
}

/* switch button */
.switch_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.switch_btn svg {
  font-size: 24px;
  cursor: pointer;
}

.switch_btn svg:hover {
  color: #09BFE3;
}

@media (max-width: 1200px) {
  .container {
    width: 90%;
  }
}

@media (max-width: 960px) {
  .container {
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 20px;
    width: 100%;
  }

  .section01_input_area {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .input_section {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .middle_item {
    width: 98%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
  }

  .top_switch_btn {
    rotate: 90deg;
  }

  .trading_btn {
    width: 100%;
  }

  .trading_btn button {
    padding: 1rem;
  }
}

@media (max-width: 800px) {
  .trading input {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section01-title p {
    padding: 0 2rem;
  }
}
