.form-popup {
    position: fixed;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    min-width: 474px;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
    background-color: #fff;
    border: 1px solid #d5d5d5;
    padding: 17px;
    border-radius: 2px;
    display: none;
  }
  .form-popup h2 {
    font-family: 'poppins-m';
    font-size: 18px;
    margin-bottom: 23px;
    width: 100%;
    display: block;
  }
  .form-popup label {
    font-family: 'poppins-l';
    margin-right: 14px;
    font-size: 14px;
    margin-bottom: 12px;
    width: 30%;
  }
  .form-popup input{
    width: 50%;
    height: 32px;
    padding: 0 9px 0 12px;
    border: 1px solid #d5d5d5;
    /* display: inline-block; */
    font-size: 14px;
    border-radius: 2px;
}
.form-popup .create{
    padding: 7px 10px;
    display: inline-flex;
    border-radius: 5px;
    font-family: 'poppins-l';
    margin-right: 16px;
    cursor: pointer;
    background: #ff9100;
    color: white;
}
.error-input{
    border: 1px solid red;
  }
.form-popup .cancel{
    padding: 7px 10px;
    display: inline-flex;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    color: black;
    font-family: 'poppins-l';
    margin-right: 16px;
    cursor: pointer;
}
.form-popup .action-btns{
    text-align: center;
    margin-top: 26px;
}
.form-popup .info-line{
    display: inline-flex;
}
.form-popup .close-detail-x{
    position: absolute;
    right: 19px;
    cursor: pointer;
}
.toastui-calendar-grid-cell-date .toastui-calendar-weekday-grid-date.toastui-calendar-weekday-grid-date-decorator{
    background-color: #ff9100;
}
.calendar-actions{
    display: inline-flex;
}

.calendar-actions .arrow-btn{
    background: #efe8e8;
    width: 30px;
    height: 30px;
    margin: 5px;
    padding: 7px 6px;
    border-radius: 50%;
    cursor: pointer;
}
.calendar-actions .arrow-btn svg{
    width: 100%;
}
.calendar-month{
    padding: 10px;
    font-family: 'poppins-m';
}
.calendar-year{
    width: 60px;
    border: unset;
    font-family: 'poppins-m';
}
.today-calendar{
    background: #efe8e8;
    /* width: 30px; */
    height: 30px;
    margin: 5px 5px;
    padding: 5px 6px;
    border-radius: 5px;
    font-family: 'poppins-m';
    cursor: pointer;
}

@media (max-width: 767px) {
    .form-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 340px;
        box-shadow: 0 2px 6px 0 rgba(0,0,0,.1);
        background-color: #fff;
        border: 1px solid #d5d5d5;
        padding: 17px;
        border-radius: 2px;
        display: none;
    }
}