


/*===========================
    27.BLOG DETAILS css 
===========================*/


.blog-details-content{
    & img{
        width: 100%;
    }
    
    & .blog-meta{
        padding-top: 25px;
        
        & li{
            display: inline-block;

            & + li{
                margin-left: 30px;

                @media #{$xs}{
                    margin-left: 15px;
                }
                @media #{$sm}{
                    margin-left: 30px;
                }
            }

            & a{
                font-size: 16px;
                color: $body-color;
                @include transition(0.3s);

                @media #{$xs}{
                    font-size: 14px;
                }
                @media #{$sm}{
                    font-size: 15px;
                }

                & i{
                    margin-right: 3px;
                }

                &:hover{
                    color: $theme-color-2;
                }
            }
        }
    }
    
    & .title{
        font-size: 30px;
        font-weight: 700;
        color: $heading-color;
        margin-top: 20px;
        
        @media #{$xs}{
            font-size: 22px;
        }
        @media #{$sm}{
            font-size: 26px;
        }
    }
    
    & p{
        margin-top: 30px;
    }
    & .blockquote{
        background-color: $theme-color-2;
        padding: 50px 70px;
        position: relative;
        z-index: 5;
        border-radius: 5px;
        margin-top: 40px;
        
        @media #{$lg}{
            padding: 50px;
        }
        @media #{$xs}{
            padding: 30px;
        }
        
        & .quota-icon{
            width: 130px;
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: -1;
            opacity: 0.15;
            
            @media #{$xs}{
                width: 80px;
            }
        }
        & p{
            font-size: 32px;
            font-weight: 300;
            color: $white;
            line-height: 48px;
            margin-top: 0;
            
            @media #{$lg}{
                font-size: 28px;
                line-height: 40px;
            }
            @media #{$xs}{
                font-size: 18px;
                line-height: 30px;
            }
            @media #{$sm}{
                font-size: 22px;
                line-height: 34px;
            }
        }
    }
    
    & .list{
        list-style-type: decimal;
        padding-left: 20px;
        padding-top: 10px;
        
        & li{
            margin-top: 15px;
        }
    }
    
    & .share{
        border-top: 1px solid rgba($heading-color, 0.1);
        margin-top: 30px;
        padding-top: 30px;
        
        
        & .share-title{
            font-size: 16px;
            font-weight: 700;
            color: $heading-color;
        }
        
        & .social{
            & li{
                display: inline-block;
                margin-left: 15px;
                
                & a{
                    font-size: 16px;
                }
                
                &:nth-of-type(1){
                    & a{
                        color: #3b5999;
                    }
                }
                &:nth-of-type(2){
                    & a{
                        color: #55acee;
                    }
                }
                &:nth-of-type(3){
                    & a{
                        color: #3b5998;
                    }
                }
                &:nth-of-type(4){
                    & a{
                        color: #0077B5;
                    }
                }
                &:nth-of-type(5){
                    & a{
                        color: #e4405f;
                    }
                }
            }
        }
    }
}

.comment-title{
    
    & .title{
        font-size: 24px;
        font-weight: 700;
        color: $heading-color;
    }
}


.blog-comment{
    padding-top: 50px;
    
    & ul{
        & li{
            & .singel-comment{
                margin-top: 30px;
            }
        }
    }

    & .singel-comment{
        position: relative;

        & .thum{
            @media #{$xs}{
                margin-left: 80px;
                padding-bottom: 20px;
            }

            & img{
                border-radius: 50%;
                width: 80px;
                height: 80px;
            }
        }

        & .cont{
            padding: 25px 60px;
            border: 1px solid rgba($heading-color, 0.1);
            margin-left: 20px;
            position: relative;

            @media #{$xs}{
                margin-left: 0;
                padding: 20px;
                padding-top: 20px;
                position: relative;
                margin-left: 0;
            }

            &::before{
                position: absolute;
                content: '';
                top: -1px;
                left: -89px;
                width: 90px;
                height: 90px;
                border-top: 1px solid rgba($heading-color, 0.1);
                background-color: $white;

                @media #{$xs}{
                    width: 70px;
                    height: 70px;
                    top: -69px;
                    left: -1px;
                    border-top: 0;
                    border-left: 1px solid rgba($heading-color, 0.1);
                }
            }
            &::after{
                position: absolute;
                content: '';
                top: -32px;
                left: -76px;
                width: 126px;
                height: 90px;
                border-bottom: 1px solid rgba($heading-color, 0.1);
                @include transform(rotate(45deg));

                @media #{$xs}{
                    width: 98px;
                    height: 70px;
                    top: -94px;
                    left: 10px;
                }
            }

            & .author_name{
                font-size: 15px;
                font-weight: 700;
                padding-bottom: 12px;
            }

            & p{
                padding-bottom: 10px;
            }

            & ul{
                & li{
                    display: inline-block;

                    & + li{
                        margin-left: 35px;

                        @media #{$xs}{
                            margin-left: 20px;
                        }
                    }

                    & a{
                        font-size: 14px;
                        color: $black;
                    }
                }
            }
        }
    }

    & .replay{
        padding-left: 80px;
        margin-top: 30px;

        @media #{$xs}{
            padding-left: 0;
        }
    }
}

.blog-form{
    padding-top: 45px;
}


