.freeze-layer{
    position: fixed;
    top:  0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99;
}


.dlg-details{
    font-family: 'Kanit', sans-serif;
    padding: 8px 10px 8px 20px;
    text-align: left;
    font-size: 17px;
    color: #58595B;
}

.dlg-container {
    position: absolute;
    left: 50%;
    top: 50%;
    
    width: 30%;
    background: #ffffff;
    padding: 10px;
    /* border: 2px solid #dddddd; */
    /* box-shadow: 1px 1px 5px 1px #cccccc; */
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    border-radius: 10px;
    display: none;
    z-index: 100;
    text-align: center;

    transform: translateX(-50%) translateY(-50%);
    /* transition: all 0.3s linear 0s; */
    transition:opacity 0.3s linear;

}

.dlg-header {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    /* font-weight: bold; */
    font-family: 'Kanit', sans-serif;
    /* background: #3B565C; */
    text-align: center;
    color: #232323;
    font-size: 1.4em;
}

.dlg-body {
    padding: 10px;
    line-height: 30px;
}

.dlg-footer {
    text-align: center;
    /* background: #f5f5f2; */
    padding: 3px 0;
}


.dlg-footer a {
    display: inline-block;
    font-family: cu-font;
    padding: 10px 0 10px 0;
    width: 100%;
    margin: 5px 0px 5px 0px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    background: #eeeeee;
    font-family: 'Kanit', sans-serif;
    cursor: pointer;
}

.dlg-footer .dlg-btn-save {
    display: inline-block;
    padding: 10px 0 10px 0;
    width: 100%;
    margin: 8px 0px 8px 0px;
    border: 0px;
    border-radius: 10px;
    background-color:#E36386;
    color:#fff;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.dlg-footer .dlg-btn-delete {
    display: inline-block;
    padding: 10px 0 10px 0;
    width: 100%;
    margin: 8px 0px 8px 0px;
    border: 0px;
    border-radius: 10px;
    background-color:#4e4e4e;
    color:#fff;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.dlg-footer .dlg-btn-cancel {
    display: inline-block;
    padding: 10px 0 10px 0;
    width: 100%;
    margin: 8px 0px 8px 0px;
    border: 0px;
    border-radius: 10px;
    background-color:#bebebe;
    color:#4e4e4e;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}
