.dreamart_google_opinie{
    display: flex;

    @media(max-width:1000px){
        display: block;
    }

    .info{
        width: 30%;
        padding: 20px;
        display: flex;

        @media(max-width:1000px){
            width: 100%;
        }

        .image{
			width: 50px;
			height: 50px;

            img{
                height: auto;
                border-radius: 50%;
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover;
            }
        }

        .content{
            max-width: calc(100% - 80px);
            margin-left: 30px;
        }

        .title{
            color: #000000;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .stars{
            display: flex;
            margin:0 -2px 10px -2px;
            span{
                margin: 0 2px;
				font-size: 20px;
				line-height: 20px;

                &.ocena{
                    position: relative;
                    top: 2px;
                    font-weight: 500;
                    margin-right: 15px;
                }

                svg{
                    width: 20px;
                    path{
                        fill:#d9d7d1;
                    }
                }

                &.active{
                    svg{
                        path{
                            fill: #f5ba06;
                        }
                    }
                }
            }
        }

        .opinie{
            color: #000000;
            font-size: 15px;
            margin-bottom: 15px;
        }

        .powered{
            img{
                max-height: 20px;
            }
        }

        a{
            background-color: #4285f4;
            padding: 9.5px 17.5px;
            border-radius: 4px;
            border-style: solid;
            border-color: #4285f4;
            border-top-width: 1px;
            border-bottom-width: 1px;
            border-left-width: 1px;
            border-right-width: 1px;
            color: #ffffff;
            font-weight: 400;
            text-decoration: none;
            font-size: 13px;
            &:hover{
                color: #4285f4;
                background-color: transparent;
            }
        }
    }


    .reviews{
        /* display: flex; */
        width: 70%;
        position: relative;
	    padding: 0 30px;

        .slick-track{
            display: flex !important;

            .slick-slide{
                height: inherit !important;
            }
        }

        @media(max-width:1000px){
            width: 100%;
            padding: 0;
        }

        &.only{
            width: 100%;
        }

        button{
            background: transparent;
            border: none !important;
            padding: 0;
            position: absolute;
            opacity: 0.5;
            top: 0;
            bottom: 0;

            &.slick-prev{
                left: 0;
            }

            &.slick-next{
                right: 0;
            }

            svg{
                width:20px;
            }

            &:hover{
                opacity: 1;
				outline:none;
				box-shadow:none;
            }
        }

        .review{
            box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.13), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
            padding: 20px;
            border-radius: 4px;
            margin: 10px;
            width: 33%;

            .review_header{
                display: flex;
                align-items: center;
                .image{
                    width: 50px;
                }

                .details{
                    max-width: calc(100% - 70px);
                    padding-left: 20px;
                    .name{
                        font-weight: bold;
                        font-size: 14px;
                        overflow: hidden;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                        color: #000000;
                        margin: 0;
                    }

                    .date{
                        color: #000000;
                        opacity: 0.5;
                        font-size: 11.2px;
                        margin: 0;
                    }
                }
            }

            .details_stars{
                display: flex;
                margin:10px -2px 10px -2px;
                span{
                    margin: 0 2px;
                    svg{
                        width: 20px;
                        path{
                            fill:#d9d7d1;
                        }
                    }
    
                    &.active{
                        svg{
                            path{
                                fill: #f5ba06;
                            }
                        }
                    }
                }
            }

            .review_text{
                color: #000000;
                font-size: 16px;
                font-weight: 400;
                line-height: 22px;

                .more{
                    display: none;

                    &.show{
                        display: inline;
                    }
                }
                
                .read_more{
                    color: #000000;
                    opacity: 0.5;
                    font-size: 14px;
                    margin: 10px 0 0 0;
                    display: block;
                    cursor: pointer;
                }
            }
            
        }

        .slick-dots{
            padding: 0;
            margin: 20px 0 0 0;
            list-style-type: none;
            display: flex;
            justify-content: center;

            li{
                margin: 0 3px;
                border-radius: 50%;
                background-color: #d9d7d1;
                width: 10px;
                height: 10px;

                button{
                    display: none;
                }

                &.slick-active{
                    background-color: black;
                }
            }
        }
    }
}