.rgc-email-verification-popup-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    left:0;
    right:0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    width: 100%;
    height: 100%;
}

.rgc-email-verification-popup{
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 50px 45px 40px;
    z-index: 9999;
    width: 100%;
    max-width: 525px;
    height: auto;
    border-radius: 0px;
}

#rgc-verification-code{
    background: #ffffff;
    border: 1px solid #00000038;
    height: 50px;
    font-family: "Poppins", sans-serif;
    padding: 10px;
    box-shadow: none;
}

#rgc-submit-code-btn{
    display: inline-block;
    width: 100%;
    max-width: 125px;
    margin: 12px auto 0px;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    padding: 10px;
    color: #ffffff;
    background-color: #ff7800;
    border: 1px solid #ff7800;
    letter-spacing: 0.3px;
    font-family: "Poppins", sans-serif;
}

#rgc-submit-code-btn:hover,
#rgc-submit-code-btn:focus,
#rgc-submit-code-btn:active{
	color: #ff7800;
    background-color: #000000;
    border: 1px solid #000000;
}

.rgc-verification-error{
    margin-top: 15px;
    font-weight: 500;
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 24px;
}

.w-comments-list{
    list-style: none;
    padding: 50px 0 0;
}

.rgc-comment-item{
    display: block;
    width: 100%;
    margin-bottom: 30px !important;
    border-bottom: 1px solid #0000000d;
    padding-bottom: 30px;
}

.rgc-comment-item:last-child{
    border: 0px !important;
    padding-bottom: 0 !important;
}

.rgc-comment-body{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.rgc-comment-avatar{
    width:5%;
}

.rgc-comment-avatar img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.rgc-comment-content{
    padding-left:15px;
    width: 95%;
}

.rgc-comment-author{
    text-transform: capitalize;
}

.rgc-comment-meta{
    font-size: 0.8em;
    color: inherit;
    padding-left:20px;
}

.rgc-comment-text{
    margin: 10px 0;
}

.rgc-comment-text,
.logged-in-as,
.comment-notes{
    font-size:14px;
    line-height: 24px;
}

.rgc-comment-actions{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.rgc-voting-wrapper{
    margin-right:12px;
}

.rgc-vote {
    background: transparent;
    border: none;
    font-size: 0.8em;
    color: inherit;
    cursor: pointer;
    padding-right: 8px;
    padding-left: 0px;
    opacity:0.8;
    transition: .3s;
}

.rgc-vote:hover {
    opacity:1;
}

.w-comments {
    display: flex;
    flex-direction: column;
}

/* Default order */
.w-comments .w-comments-title {
    order: 1;
}
.w-comments .w-comments-list {
    order: 3;
}
.w-comments .w-comments-pagination {
    order: 4;
}
.w-comments .comment-respond {
    order: 2;
}

h4.w-comments-title{
    display: none;
}

.comment-respond form{
    background: #ffffff;
    padding: 30px 35px;
    box-shadow: 0px 2px 5px 1px rgba(0, 52, 102, 0.11);
    border-radius: 0px;
    margin: 40px 0 10px;
}

.w-form-row-field textarea{
    height: 65px;
    padding: 20px 25px;
    background-color: #ffffff;
    border: 1px solid #00000012;
    box-shadow: none;
    border-radius: 0px;
    font-size: 12px;
}

.w-form-row-field input{
    height: 40px;
    padding: 8px 25px !important;
    background-color: #f3f3f3 !important;
    border: 1px solid #00000012 !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    font-size: 12px !important;
}


@media all and (max-width:480px) {
    
    .comment-respond form {
        padding: 25px 20px;
        max-width: 358px;
    }
    
}

@media all and (max-width:768px) {
    
    .rgc-comment-avatar{
        width:10%;
    }

    .rgc-comment-content{
        width: 90%;
    }
    
    
}

@media all and (min-width:480px) and (max-width:768px) {
    
    .comment-respond form {
        padding: 25px 20px;
        max-width: 358px;
    }
    
}