
.arzCmReportDialog .arz-icon-close{
    width: 12px;
    height: 12px;
    fill: #64748B;
    transition: fill .2s ease;
}
.arzCmReportDialog .close .arz-icon-close:hover{
    fill: #334155;
}
.arzCmReportDialog {
    position:absolute;
    z-index:99999;
    background: white;
    padding: 1rem;
    box-shadow: 0 0 0 #94A3B8;
    border-radius: 4px;
    display:none;
    width: 320px;
    max-width: 100vw;
}
.arzCmReportDialog .response{
    min-height: 50px;
}
.arzCmSaveReport{
    background-color: #F43F5E;
    color: #FFF !important;
    margin: auto !important;
    font-size: 14px !important;
    width: 140px;
    border-radius: 4px;
    display: block !important;
    margin-top: 1rem;
}
.arzCmSaveReport.waiting{
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}
.cradio{
    position: relative;
    color: #64748B;
}
.cradio input{
    margin: 0;
    visibility: hidden;
}
.cradio-after{
    content: ''!important;
    height: 14px;
    width: 14px;
    background-color: #FFF;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    margin-left: .5rem;
    padding: 2px;
    transition: border .2s ease;
}
.cradio-after > div{
    background: transparent;
    transition: background .2s ease;
}
.cradio input:checked ~ div{
    color: #334155;
}
.cradio input:checked ~ .cradio-after{
    border-color: #14B8A6;

}
.cradio input:checked ~ .cradio-after > div{
    background-color: #14B8A6;
    width: 100%;
    height: 100%;
}

.error-response,
.success-response{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 14px;
    color: #475569;
}
.success-response .first,
.error-response .first{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.error-response .first{
    border: 3px solid #EC4899;
}
.error-response .arz-icon-close{
    fill: #EC4899;
}
.success-response .first{
    border: 3px solid #14B8A6;
}
.success-response .arz-icon-close{
    fill: #14B8A6;
}
.success-response .close,
.error-response .close{
    margin: auto;
    font-size: 14px;
    width: 100px;
    border-radius: 4px;
    display: block;
    margin-top: 1rem;
}
.error-response .close{
    margin-right: 1rem;
    background-color: transparent; 
}




.cmImgUploadLoading{
    width: 100%;
    height: 50px;
    position: absolute;
    background: url(https://arzdigital.com/wp-content/themes/arz-theme/templates/2servere/main/comments/loading.gif) no-repeat center;
}

.comment-files{
    display:flex;
}
.comment-files .img-cont{
    cursor:pointer;
    margin: 2px;
    padding: 2px;
    background: #ccc;
    border-radius: 10px;
    overflow: hidden;
}
.cm-img-wide{
    display:none;
    width: 100vw;
    height: 100vh;
    background: #ffffff7a;
    overflow: hidden;
    z-index: 99999;
    top: 0;
    position:fixed;
    cursor:pointer;
}
.cm-img-wide .comment-img-cont{
    cursor: auto;
    padding: 10px;
    background: #ccc;
    border-radius: 10px;
    overflow: hidden;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}