/* Style the page of new reviews */
.PageNewReviews {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    width: 100%;

    padding-left: 17px;
    padding-right: 17px;
}

    .PageNewReviews__Header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        width: 100%;

        margin-bottom: 47px;
    }

    @media screen and (max-width: 550px){
        .PageNewReviews__Header {
            justify-content: center;
        }
    }

        .PageNewReviewsHeader__Titul {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-end;

            color: rgb(217, 221, 225);

            width: 100%;
        }

        @media screen and (max-width: 550px){
            .PageNewReviewsHeader__Titul {
                justify-content: center;
            }
        }

            .PageNewReviewsHeader__Titul > span {
                color: rgb(247, 197, 47);

                margin-left: 4px;
                margin-right: 4px;
            }

        .PageNewReviewsHeader__Title {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;

            width: 100%;
        }

        @media screen and (max-width: 550px){
            .PageNewReviewsHeader__Title {
                justify-content: center;
            }
        }

            .PageNewReviewsHeader__Title > h2 {
                text-align: left;
            }

            @media screen and (max-width: 550px){
                .PageNewReviewsHeader__Title > h2 {
                    text-align: center;
                }
            }

    .PageNewReviews__Block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        position: relative;

        width: 100%;
    }

        .PageNewReviewsBlock__Carousel {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;

            position: relative;
            z-index: 2;

            width: 100%;
        }

        .PageNewReviewsBlock__Carousel::-webkit-scrollbar { width: 0px !important; height: 0px !important; }

            .PageNewReviewsBlockCarousel__Item {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;

                background-size: cover;
                background-position: top right;
                background-repeat: no-repeat;
                border-radius: 3px;

                width: 100%;
                min-width: 300px !important;
                max-width: 350px;

                padding: 17px;
                margin-left: 17px;

                transition: 0.4s;
                /* box-shadow: 0px 0px 27px rgba(255, 237, 177, 0.1); */
            }

                .glider-slide {
                    justify-content: flex-start !important;
                }

                .PageNewReviewsBlockCarousel__Item:nth-of-type( even ) {
                    background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v1.svg' ), rgb(60, 64, 68);
                }

                    .PageNewReviewsBlockCarousel__Item:nth-of-type( even ):hover {
                        transition: 0.2s;
                        background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v1.svg' ), rgb(64, 68, 72);
                    }

                .PageNewReviewsBlockCarousel__Item:nth-of-type( odd ) {
                    background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v2.svg' ), rgb(60, 64, 68);
                }

                    .PageNewReviewsBlockCarousel__Item:nth-of-type( odd ):hover {
                        transition: 0.2s;
                        background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v2.svg' ), rgb(64, 68, 72);
                    }

                .PageNewReviewsBlockCarousel__Item:nth-of-type(1) {
                    margin-left: unset;
                }

                .PageNewReviewsBlockCarouselItem__Header {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: flex-start;

                    border-bottom: 1px solid rgb(64, 68, 72);

                    width: 100%;

                    padding-bottom: 7px;
                    margin-bottom: 7px;
                }

                    .PageNewReviewsBlockCarouselItemHeader__Photo {
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        justify-content: center;

                        border: 2px solid rgb(64, 68, 72);
                        border-radius: 3px;

                        margin-right: 14px;
                    }

                        .PageNewReviewsBlockCarouselItemHeader__Photo > img {
                            border-radius: 3px;
    
                            width: 100%;
                            height: auto;
                            max-width: 68px;

                            filter: grayscale(0.7);
                        }

                        .PageNewReviewsBlockCarouselItemHeader__PhotoDefault {
                            width: 53px !important;
                            height: 53px !important;
                            max-width: 53px !important;
                            object-fit: contain;
                        }

                    .PageNewReviewsBlockCarouselItemHeader__Data {
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        justify-content: center;

                        width: 100%;
                    }

                        .PageNewReviewsBlockCarouselItemHeaderData__Name {
                            display: flex;
                            flex-direction: row;
                            align-items: center;
                            justify-content: flex-start;
                            
                            color: rgb(247, 197, 47);
                            font-weight: 500;
                            text-align: left;
                            
                            width: 100%;
                        }

                        .PageNewReviewsBlockCarouselItemHeaderData__Date {
                            display: flex;
                            flex-direction: row;
                            align-items: center;
                            justify-content: flex-start;
                            
                            color: rgb(97, 107, 117);
                            text-align: left;
                            
                            width: 100%;
                        }

                .PageNewReviewsBlockCarouselItem__Content {
                    display: block;
                    
                    text-align: left;
                    
                    width: 100%;
                    height: 100%;
                }

                .PageNewReviewsBlockCarouselItem__Functions {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;

                    width: 100%;

                    margin-top: 17px;
                }

        .PageNewReviewsBlock__Navigation {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;

            position: absolute;
            z-index: 1;

            width: 100%;
            height: 100%;
        }

        @media screen and (max-width: 615px){
            .PageNewReviewsBlock__Navigation {
                display: none;
            }
        }

            .PageNewReviewsBlockNavigation__ButtonLeft {
                position: absolute;
                top: 43%;
                left: -77px;
            }

            @media screen and (max-width: 1325px){
                .PageNewReviewsBlockNavigation__ButtonLeft {
                    top: unset;
                    bottom: -77px;
                    left: 40%;
                }
            }

            .PageNewReviewsBlockNavigation__ButtonRight {
                position: absolute;
                top: 43%;
                right: -77px;
            }

            @media screen and (max-width: 1325px){
                .PageNewReviewsBlockNavigation__ButtonRight {
                    top: unset;
                    bottom: -77px;
                    right: 40%;
                }
            }
