#FEE_FORM .WHAT_DAY{
    font-size: 18px;
    /* flex-grow: 1; */
    width: fit-content;
    padding: 8px;
}
#FIRST_DATE_BLOCK{
    display: none;
}
#SECOND_DATE_BLOCK{
    display: none;
}
#THIRD_DATE_BLOCK{
    display: none;
}
#FOURTH_DATE_BLOCK{
    display: none;
}
#FIFTH_DATE_BLOCK{
    display: none;
}

.LEAVE_EQUIPMENT{
    position: relative;
}
.CHECKBOX_LABEL span{
   font-size: 12px;
   margin-top: 6px;
   display: inline-block;
}
.LEAVE_EQUIPMENT::before{
    width: 24px;
    height: 24px;
    border: 1px solid #000;
    content:'';
    display: inline-block;
    margin-left: 16px;
    border-radius: 4px;
    cursor: pointer;
}
.LEAVE_EQUIPMENT::after{
    left:20px;
    top: 4px;
    content:'';
    background: url(../images/check.svg) no-repeat center;
    width: 16px;
    height: 16px;
    display: none;
    position: absolute;
    background-size: contain;
 
}

.NEXT .END_TIME option:nth-last-child(1){
    display: none;
}
.NEXT .END_TIME option:nth-last-child(2){
    display: none;
}
@media(max-width:600px){
    .LEAVE_EQUIPMENT::before{
        margin-left: 0;
    }
    .LEAVE_EQUIPMENT::after{
        left:4px;
     
    }
}

.LEAVE_EQUIPMENT:checked::after{
    display: block;
}
.LEAVE_EQUIPMENT:checked::before{
    background-color: #000;
}
.CHECKBOX_LABEL{
    padding-left: 8px !important;
}
@media (max-width:600px) {
    #FEE_FORM .WHAT_DAY{
        width: 50%;
        text-align: left;
      
    }
    .DATE_TIME_WRAP+.DATE_TIME_WRAP{
        margin-top: 24px !important;
    }
    .FLEX_WRAP{
        gap: 32px !important;
    }
  
}