/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

.review-form-inner.has-border {
    border: 0;
}

.comment-respond {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 50%;
    background: #fff;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-out;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    padding: 20px;
    box-sizing: border-box;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 73, 94, 0.8);
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: 0.7s;
}

.active {
    visibility: visible;
    opacity: 1;
}
.active + .comment-respond {
    visibility: visible;
    opacity: 1;
}