/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* ========================================
   WooCommerce Reviews
======================================== */

#reviews {
    margin-top: 40px;
}

/* Title */

.woocommerce-Reviews-title,
.comment-reply-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

/* Reviews List */

.woocommerce-Reviews .commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-Reviews .commentlist li {
    margin-bottom: 25px;
}

.woocommerce-Reviews .comment_container {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 25px;
    transition: .3s;
}

.woocommerce-Reviews .comment_container:hover {
    border-color: var(--e-global-color-primary);
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

/* Avatar */

.woocommerce-Reviews .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid #f3f3f3;
}

/* Comment Content */

.comment-text {
    width: 100%;
}

.comment-text .meta {
    margin: 10px 0 18px;
    color: #777;
    font-size: 14px;
}

.comment-text .woocommerce-review__author {
    color: #222;
    font-size: 17px;
    font-weight: 700;
}

.comment-text .description {
    line-height: 1.8;
    color: #555;
}

/* Star Rating */

.star-rating {
    color: #ffb400;
    margin-bottom: 8px;
    font-size: 16px;
}

/* ========================================
   Review Form
======================================== */

#review_form_wrapper {
    margin-top: 50px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 35px;
}

/* Labels */

#review_form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

/* Inputs */

#review_form textarea,
#review_form input[type="text"],
#review_form input[type="email"],
#review_form input[type="url"] {

    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 16px;
    transition: .3s;
    background: #fff;
    font-size: 15px;
}

#review_form textarea {
    min-height: 170px;
    resize: vertical;
}

#review_form textarea:focus,
#review_form input:focus {
    outline: none;
    border-color: var(--e-global-color-primary);
    box-shadow: 0 0 0 4px rgba(0,0,0,.03);
}

/* Submit Button */

#review_form .submit {
    background: var(--e-global-color-primary);
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

#review_form .submit:hover {
    transform: translateY(-2px);
    opacity: .92;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* Rating */

.comment-form-rating {
    margin-bottom: 25px;
}

.comment-form-rating .stars a {
    color: #d0d0d0;
    transition: .2s;
}

.comment-form-rating .stars:hover a,
.comment-form-rating .stars.selected a {
    color: #ffb400;
}

/* Required */

.required {
    color: #e53935;
}

/* Date */

.woocommerce-review__published-date {
    color: #999;
    font-size: 13px;
}

/* Divider */

.woocommerce-Reviews .commentlist li:not(:last-child) {
    padding-bottom: 25px;
}

/* Responsive */

@media (max-width:768px){

    .woocommerce-Reviews .comment_container{
        flex-direction:column;
        padding:20px;
    }

    .woocommerce-Reviews .avatar{
        width:60px;
        height:60px;
    }

    #review_form_wrapper{
        padding:25px;
    }

}
.comment-text {
  border: none !important;
}
.comment_container img {
  position: absolute !important;
  left: 30px !important;
  top: 30px !important;
  width: 45px !important;
}
#commentform #submit {
  display: block !important;
  width: 100%;
  background: var(--e-global-color-primary) !important;
  color: #fff !important;
  border-radius: 60px !important;
  padding: 15px !important;
}