/* Style the catalog of news records */
.SingleCatalogsNews {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    width: 100%;

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

    .SingleCatalogsNews__Header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        margin-bottom: 47px;
    }

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

        .SingleCatalogsNewsHeader__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){
            .SingleCatalogsNewsHeader__Titul {
                justify-content: center;
            }
        }

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

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

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

            width: 100%;
        }

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

            .SingleCatalogsNewsHeader__Title > h2 {
                text-align: left;
                max-width: 600px;
            }

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

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

        width: 100%;
    }

        .SingleCatalogsNewsBlock__Item {
            display: grid;
            align-items: flex-start;
            justify-content: flex-start;

            grid-template-columns: 1fr 2fr;

            width: 100%;

            margin-bottom: 17px;
        }

        @media screen and (max-width: 1075px){
            .SingleCatalogsNewsBlock__Item {
                grid-template-columns: 1fr 1fr;
            }
        }

            @media screen and (max-width: 900px){
                .SingleCatalogsNewsBlock__Item {
                    grid-template-columns: 1fr;
                }
            }

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

                margin-right: 17px;
            }

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

                .SingleCatalogsNewsBlockItem__Demo > img {
                    border-radius: 3px;

                    width: 100%;
                    height: auto;
                    max-width: 512px;

                    z-index: 2;

                    cursor: pointer;
                    transition: 0.4s;
                    box-shadow: 0px 0px 37px rgba(255, 237, 177, 0.1);
                }

                    .SingleCatalogsNewsBlockItem__Demo:hover > img {
                        transition: 0.2s;
                        box-shadow: 0px 0px 37px rgba(255, 237, 177, 0.3);
                    }

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

                border-radius: 3px;

                width: 100%;
                height: 100%;

                padding: 17px;

                transition: 0.4s;
            }

                .SingleCatalogsNewsBlock__Item:nth-of-type( odd ) > .SingleCatalogsNewsBlockItem__Data {
                    background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v1.svg' ), rgb(60, 64, 68);
                    background-size: contain;
                    background-position: top right;
                    background-repeat: no-repeat;
                }

                    .SingleCatalogsNewsBlock__Item:nth-of-type( odd ) > .SingleCatalogsNewsBlockItem__Data: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);
                        background-size: contain;
                        background-position: top right;
                        background-repeat: no-repeat;
                    }

                .SingleCatalogsNewsBlock__Item:nth-of-type( even ) > .SingleCatalogsNewsBlockItem__Data {
                    background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v4.svg' ), rgb(60, 64, 68);
                    background-size: contain;
                    background-position: top right;
                    background-repeat: no-repeat;
                }

                    .SingleCatalogsNewsBlock__Item:nth-of-type( even ) > .SingleCatalogsNewsBlockItem__Data:hover {
                        transition: 0.2s;
                        background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-box-350x250-v4.svg' ), rgb(64, 68, 72);
                        background-size: contain;
                        background-position: top right;
                        background-repeat: no-repeat;
                    }

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

                    width: 100%;

                    margin-bottom: 17px;
                }

                    .SingleCatalogsNewsBlockItemData__Title > a > h5 > i {
                        margin-right: 7px;
                    }

                .SingleCatalogsNewsBlockItemData__Desc {
                    display: block;

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

                    text-align: left;

                    width: 100%;
                    height: 100%;

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

                    .SingleCatalogsNewsBlockItem__Data:hover > .SingleCatalogsNewsBlockItemData__Desc {
                        border: 1px solid rgb(68, 72, 76);
                    }

            .SingleCatalogsNewsBlockItemData__Service {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                justify-content: center;

                width: 100%;
            }

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

                    width: 100%;
                }

                    .SingleCatalogsNewsBlockItemDataService__Link > a > i {
                        margin-right: 7px;
                    }

                .SingleCatalogsNewsBlockItemDataService__Name {
                    display: block;

                    color: rgb(97, 107, 117);
                    font-size: 14px;
                    font-weight: 400;
                    text-align: right;

                    width: 100%;
                }