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

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}


3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.has-reviews .product-reviews,
.has-reviews .woocommerce-tabs {
    display: inline-block;
    width: 48%;
    float: left;
}
 
.has-reviews .woocommerce-tabs {
    margin-right: 4%;
}
 
.has-reviews .product-reviews {
    border: 1px solid #e6e6e6;
    padding: 0 30px 30px;
    margin-top: 20px;
}
 
.woocommerce-Reviews-title {
    font-size: 16px;
}
 
.comment-reply-title {
    border-top: 1px solid #e6e6e6;
    display: block;
    font-size: 20px;
    margin-bottom: 15px;
    padding-top: 25px;
}
 
@media only screen and (max-width: 680px) {
    .has-reviews .product-reviews,
    .has-reviews .woocommerce-tabs {
        clear: both;
        float: none;
        margin-right: 0;
        width: 100%;
    }
    
    .has-reviews .product-reviews {
        padding: 0 20px 20px;
        margin-top: 0;
    }
}