
.button-container{
  display: flex;
  justify-content: center; /* 버튼을 가운데 정렬 */
  gap: 10px; /* 버튼 간격 설정 */
}

.button-container .btn {
  flex: 0 0 auto; /* 기본적으로 버튼 크기 자동 조정 */
}

@media (max-width: 576.98px) {
  .button-container {
    flex-direction: column; /* 버튼을 세로로 배치 */
    align-items: stretch; /* 버튼을 컨테이너 너비에 맞게 확장 */
  }

  .button-container .btn {
    width: 100%; /* 버튼이 화면의 100%를 차지 */
  }
}

.card-info-wrap{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.info-wrap{
  text-align:left;
}
.info-wrap .title{
  font-size: 22px;
  font-weight: 600;
}
.info-wrap .summary{
  font-size: 14px;
  font-weight: 400;
}

#price-total{
  font-size: 22px;
  font-weight: 600;
  color: #000;
}
#price-shipping{
  font-size: 22px;
  font-weight: 600;
  color: #000;
}
#price-payment{
  font-size: 34px;
  font-weight: 600;
  color: #008000;
}

.price{
  font-size: 22px;
  font-weight: 600;
  color: #008000;
}

.study-how, .recv-msg{
  height: 120px !important;
}

.datepicker td, .datepicker th {
  padding: 5px 10px !important;
}
.btn-calendar{
  cursor: pointer;
}

#study_how_length{
  color: #007BFF;
  font-weight: 500;
  font-size: 18px;
}

.caution-box{
  height: 200px;
  border: 2px solid #ddd;
  border-radius: 5px;
  overflow-y: auto;
  padding: 10px;
  text-align: left;
}

th.dow{
  background-color: #ddd;
  border-radius: 0 !important;
}
td.today{
  background-color: #30C0FF !important;
  background-image: none !important;
  color: #fff !important;
  border-radius: 50% !important;
}
td.active{
  background-color: #007BFF !important;
  background-image: none !important;
  color: #fff !important;
  border-radius: 50% !important;
}

td.disabled.day{
  opacity: 0.7;
}

#datePicker{
  font-size: 18px;
  font-weight: 600;
}

#addressModal .modal-dialog{
  width: 500px;
}
@media (max-width: 576.98px) {
  #addressModal .modal-dialog{
    width: 90vw;
  }
}


/* 구매수량 */
.item-price-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.quantity{
  width: 135px;
  height: 44px;
  background: #e9ecef;
  display:flex;
  flex-wrap: nowrap !important;
}
.quantity .minus, .quantity .plus{
  width: 45px;
  display:flex;
  justify-content:center;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 24px;
}
.quantity .input-count{
  border-top: 0;
  border-bottom: 0;
  border-left: 1px solid #bbb;
  border-right: 1px solid #bbb;
  width: 45px;
  background: #e9ecef;
  display: block;
  text-align:center;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox  */
input[type='number'] {
  -moz-appearance: textfield;
}
