.calendar {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 2px solid #000;
}

.yobi__sunday{
  color: red;
}

.yobi__saturday{
  color: blue;
}

.form-calender__top{
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.form-calender__title{
  font-size: 15px;
  /* width: 110px; */
  /* text-align: right; */
}

.form-calender__description{
  /* flex: 1; */
  width: 70%;
  font-size: 13px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .form-calender{
    font-size: 14px;
  }

  .form-calender__top{
    display: block;
  }

  .form-calender__title{
    width: 100%;
    text-align: left;
    font-size: 14px;
  }
  
  
  .form-calender__title br{
    display: none;
  }
  
  .form-calender__description{
    font-size: 13px;
    margin-left: 10px;
    margin-top: 5px;
    font-size: 13px;
  }
}

.calendarButtons{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calendar-button{
  background-color: white;
  border-radius: 4px;
  border: #ddd 2px solid;
  color: #ddd;
  padding: 5px 8px;
  font-size: 14px;
  cursor: pointer;
}
.calendar-button--active{
  border: #DCB026 2px solid;
  color: #DCB026;
}

.calendar th, td {
  width: calc(100%/8);
  text-align: center;
  border: 1px solid #000;
}

.calendar th{
  line-height: 14px;
  font-size: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.calendar label {
  display: block;
  width: 100%;
  line-height: 30px;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .calendar label {
    font-size: 14px;
  }
}

.calendar-cell {
  font-size: 16px;
}

#latterHalf{
  display: none;
}

.datetime-selected{
  background-color: #ffff4b;
}

input[type=radio].hide-radiobtn{
  display: none;
}

.form-calender{
  margin-top: 20px;
  width: 70%;
  margin-left: auto;
  margin-bottom: 30px;
}

#selectedDay{
  display: inline;
}

#selectedDay span{
  /* display: inline-block; */
}

@media screen and (max-width: 768px) {
  .form-calender{
    width: 100%;
  }
}
  

.request-confirm{
  margin-top: 30px;
  font-size: 18px;
  width: 70%;
  font-weight: bold;
  margin-bottom: 30px;
  margin-left: auto;
  background-color: #ffedb6;
}

@media screen and (max-width: 768px) {
  .request-confirm{
    width: 100%;
  }
}

.request-confirm input[type="text"] {
  background-color: transparent;
  border: none;
  outline: none;
}

#requestDateTime{
  font-size: 14px;
  height: 70px;
  color: #454545;
  background-color: #feedb6;
  border: none;
  width: 97%;
  resize: none;
  margin-left: 2%;
  margin-top: 10px;
}

.datetime-disabled{
  background-color: #ccc;
}

.request-confirm__title{
  padding-top: 10px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  font-size: 14px;
}

.request-confirm__content{
  display: block;
  margin-top: 10px;
  width: 96%;
  margin-right: 2%;
  margin-left: auto;
  font-size: 14px;
}

.form-item-calender{
  align-items: start;
}