#waiting {
    display: none;
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#waiting.fade-show .backdrop{
    opacity: 1;
}
#waiting.fade-show .content{
    opacity: 1;
}
#waiting .backdrop{
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(0,0,0,0.2);
    z-index: 1;

    opacity: 0;
    transition: opacity 0.15s ease;
    /* transition-delay: 1.2s; */
}
#waiting .content{
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    border-radius: 15px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76%;
    min-width: 300px;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.15s ease;

    background-color: white;
    /* backdrop-filter: blur(10px); */
}

/* inner */
#waiting .content .inner{
    width: 100%;
    min-height: 320px;
    padding: 20px 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#waiting .content .inner .row {
    width: 90%;   
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#waiting .content .inner .row .lab {
    min-width: 160px;
    height: 60px;
    padding-left: 16px;
    
    font-size: 22px;
    font-weight: 700;

    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;

}
#waiting .content .inner .row .lab .sub {
    font-size: 13px;
    color: rgb(172, 172, 172);
}
#waiting .content .inner .row .val {
    height: 60px;
    padding-left: 16px;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #eda20d;
    font-size: 22px;
    font-weight: 700;
}
#waiting .content .inner .times {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 10px 0;
}
#waiting .content .inner .times .i-time-item-mini.active {
    opacity: 1;
}
#waiting .content .inner .times .i-time-item-mini.active .time-name{
    color: black;
    background-color: white;
}
#waiting .content .inner .times .i-time-item-mini {
    padding: 2px 2px;
    float: left;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
#waiting .content .inner .times .i-time-item-mini .time-name {
    min-width: 78px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 24px;
    color: rgb(185, 185, 185);
    font-weight: 500;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
}


#waiting .content .inner .row.wanted-time {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 10px;
}
#waiting .content .inner .row.wanted-time .val{
    height: auto;    
}


/* TODO: 지우기 대기 */
/* #waiting .content .inner > .txt-row {
    transform: translateY(20px); opacity: 0;
    animation: showing 0.2s ease;
    animation-fill-mode: forwards;    
}
#waiting .content .inner .customer-name {
    font-size: 30px;
    font-weight: 600;
    color: rgb(36, 60, 168);
    padding: 10px 0;
    animation-delay: 0.1s;
}
#waiting .content .inner .class-name {
    font-size: 31px;
    font-weight: 500;
    color: black;
    text-align: center;
    padding: 0 10px;
    animation-delay: 0.2s;
}
#waiting .content .inner .time-name {
    margin: 10px 0;
    font-size: 40px;
    font-weight: 400;
    color: black;
    animation-delay: 0.3s;
}
#waiting .content .inner .state {
    font-size: 25px;
    font-weight: 500;
    color: rgb(102, 102, 102);
    animation-delay: 0.4s;
} */
/* TODO: 지우기 대기 */



/* foot */
#waiting .content .footer{}
#waiting .content .footer .popup-btns{
    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
}
#waiting .content .footer .popup-btns .popup-btn{
    min-width: 50%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
    font-weight: 500;
}
#waiting .content .footer .popup-btns .popup-btn.back{
    min-width: 30%;
    font-weight: 400;
    background: #eae9e6;
}
#waiting .content .footer .popup-btns .popup-btn.ok{
    border-left: 1px solid gainsboro;
    min-width: 70%;
    font-weight: 600;
    color: #f1f2f5;
    background-color: #F6AE1E;
}

