/*nut close*/
.pray-rcw-wat-reply-form-close {
    position: absolute !important;
    display: flex;
    align-items: center;
    top: -5px;
    right: -5px;
    cursor: pointer;
    color: white;
    font-size: 15px;
    z-index: 10;
    background: #008CBA;
    padding: 10px;
    height: 1.575rem;
    width: 1.575rem;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pray-rcw-wat-reply-form-close::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent
    );
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.pray-rcw-wat-reply-form-close:hover::before {
    transform: translateX(0);
}

@media screen and (max-width: 768px) {
    .pray-rcw-wat-reply-form-close {
        top: 0px;
        right: 0px;
        height: 1.38rem;
        width: 1.38rem;
        font-size: 15px;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 4px;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 0px;
}
}