#layout {
    position: relative;
    float: left;
    width: 100.0%;
    /*
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100.0%;
    height: 100.0%;
    overflow-y: auto;
    overflow-x: hidden;
     */
}

    /* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- */
    #layout > header#layout-header {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 64px;
        padding: 0 20px;
        z-index: 4;
        -webkit-transition-property: background;
        -moz-transition-property: background;
        -ms-transition-property: background;
        -o-transition-property: background;
        transition-property: background;
        -webkit-transition-duration: 0.32s;
        -moz-transition-duration: 0.32s;
        -ms-transition-duration: 0.32s;
        -o-transition-duration: 0.32s;
        transition-duration: 0.32s;
        -webkit-transition-timing-function: initial;
        -moz-transition-timing-function: initial;
        -ms-transition-timing-function: initial;
        -o-transition-timing-function: initial;
        transition-timing-function: initial;
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        -ms-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }

    body#home #layout > header#layout-header.layout-header-floating {
        position: fixed;
        background-color: rgba(255, 255, 255, 1);
    }


        #layout > header#layout-header > #layout-header-toggle {
            position: absolute;
            left: 20px;
            width: 24px;
            height: 24px;
            padding: 0;
            border: 0;
            background-color: transparent;
            overflow: hidden;
            cursor: pointer;
        }

        @media (max-width: 1024px) {
            #layout > header#layout-header > #layout-header-toggle {
                display: block;
            }
        }

        @media (min-width: 1025px) {
            #layout > header#layout-header > #layout-header-toggle {
                display: none;
            }
        }

            #layout > header#layout-header > #layout-header-toggle i {
                font-size: 24px;
            }

            #layout > header#layout-header:not(.layout-header-floating) > #layout-header-toggle i {
                color: rgba(255, 255, 255, 1);
            }

        body#search #layout > header#layout-header:not(.layout-header-floating) > #layout-header-toggle i{
            color: rgb(67, 67, 67)!important;
        }

        #layout > header#layout-header > #layout-header-logo-dynamic,
        #layout > header#layout-header > #layout-header-logo-white {
            position: relative;
            float: left;
            display: none;
            height: 34px;
        }

        body#home #layout > header#layout-header:not(.layout-header-floating) > #layout-header-logo-white,
        body#home #layout > header#layout-header > #layout-header-logo-white,
        body#publication #layout > header#layout-header > #layout-header-logo-white,
        body#blog #layout > header#layout-header > #layout-header-logo-white,
        body#post #layout > header#layout-header > #layout-header-logo-white,
        body#blog-tag #layout > header#layout-header > #layout-header-logo-white,
        body#author #layout > header#layout-header > #layout-header-logo-white,
        body#favorite #layout > header#layout-header > #layout-header-logo-white,
        body#magazine #layout > header#layout-header > #layout-header-logo-white,
        body#categories #layout > header#layout-header > #layout-header-logo-white,
        body#calendar #layout > header#layout-header > #layout-header-logo-white,
        body#signup #layout > header#layout-header > #layout-header-logo-white,
        body#signup-provider #layout > header#layout-header > #layout-header-logo-white,
        body#reclaim #layout > header#layout-header > #layout-header-logo-white {
            display: block;
        }

        body#home #layout > header#layout-header.layout-header-floating > #layout-header-logo-white {
            display: none;
        }
        body#home #layout > header#layout-header.layout-header-floating > #layout-header-logo-dynamic,
        body#search #layout > header#layout-header > #layout-header-logo-white {
            display: block;
        }

            #layout > header#layout-header > #layout-header-logo-dynamic > img,
            #layout > header#layout-header > #layout-header-logo-white > img {
                position: relative;
                float: left;
                height: 100.0%;
            }

        #layout > header#layout-header > #layout-header-nav {}

        @media (max-width: 1024px) {
            #layout > header#layout-header > #layout-header-nav {
                position: fixed;
                display: none;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                padding: 48px 48px;
                background-color: rgba(255, 255, 255, 1);
            }
            #layout > header#layout-header > #layout-header-nav-backgroud {
                top: 0;
                bottom: 0;
                float: left;
                background-color: rgba(0, 0, 0, 0.3);
                width: 100%;
                right: 0;
                position: fixed;
                display: none;
                opacity: 1;
                -webkit-transition-property: opacity;
                -moz-transition-property: opacity;
                -ms-transition-property: opacity;
                -o-transition-property: opacity;
                transition-property: opacity;
                -webkit-transition-duration: 0.32s;
                -moz-transition-duration: 0.32s;
                -ms-transition-duration: 0.32s;
                -o-transition-duration: 0.32s;
                transition-duration: 0.32s;
                -webkit-transition-timing-function: initial;
                -moz-transition-timing-function: initial;
                -ms-transition-timing-function: initial;
                -o-transition-timing-function: initial;
                transition-timing-function: initial;
                -webkit-transition-delay: 0s;
                -moz-transition-delay: 0s;
                -ms-transition-delay: 0s;
                -o-transition-delay: 0s;
                transition-delay: 0s;
            }

            #layout > header#layout-header > #layout-header-nav.open {
                display: block;
                width: 75%;
                max-width: 300px;
                z-index: 100;
            }

                #layout > header#layout-header > #layout-header-nav > #layout-header-nav-close {
                    position: absolute;
                    top: 12px;
                    right: 12px;
                    width: 24px;
                    height: 24px;
                    padding: 0;
                    border: 0;
                    background-color: transparent;
                    overflow: hidden;
                    cursor: pointer;
                }

                    #layout > header#layout-header > #layout-header-nav > #layout-header-nav-close > i {
                        font-size: 24px;
                    }

                #layout > header#layout-header > #layout-header-nav > nav {
                    position: relative;
                    float: left;
                    width: 100.0%;
                }

                    #layout > header#layout-header > #layout-header-nav > nav > ul {
                        position: relative;
                        float: left;
                        width: 100.0%;
                        padding: 0;
                        margin: 0;
                        list-style: none;
                    }

                    #layout > header#layout-header > #layout-header-nav > nav > ul + ul {
                        margin-top: 48px;
                    }

                        #layout > header#layout-header > #layout-header-nav > nav > ul > li {
                            position: relative;
                            float: left;
                            width: 100.0%;
                        }

                        #layout > header#layout-header > #layout-header-nav > nav > ul > li.button {}

                        #layout > header#layout-header > #layout-header-nav > nav > ul > li.empresaLine {
                            display: none;
                        }
                        #layout > header#layout-header > #layout-header-nav > nav > ul > li.areaEmpresa {
                            margin-left: 0px !important;
                        }

                        #layout > header#layout-header > #layout-header-nav > nav > ul > li + li {
                            margin-top: 24px;
                        }

                            #layout > header#layout-header > #layout-header-nav > nav > ul > li > a {
                                position: relative;
                                float: left;
                                letter-spacing: 2px;
                                font-size: 13px;
                                font-weight: 600;
                                text-decoration: none;
                                text-transform: uppercase;
                                -webkit-transition-property: color;
                                -moz-transition-property: color;
                                -ms-transition-property: color;
                                -o-transition-property: color;
                                transition-property: color;
                                -webkit-transition-duration: 0.32s;
                                -moz-transition-duration: 0.32s;
                                -ms-transition-duration: 0.32s;
                                -o-transition-duration: 0.32s;
                                transition-duration: 0.32s;
                                -webkit-transition-timing-function: initial;
                                -moz-transition-timing-function: initial;
                                -ms-transition-timing-function: initial;
                                -o-transition-timing-function: initial;
                                transition-timing-function: initial;
                                -webkit-transition-delay: 0s;
                                -moz-transition-delay: 0s;
                                -ms-transition-delay: 0s;
                                -o-transition-delay: 0s;
                                transition-delay: 0s;
                            }

                            @media (min-width: 1025px) {
                                body#home #layout > header#layout-header:not(.layout-header-floating) > #layout-header-nav > nav > ul > li > a,
                                body#publication #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#categories #layout > header#layout-header > #layout-header-nav > nav > ul > li > a {
                                    color: rgba(255, 255, 255, 1);
                                }
                            }

                            #layout > header#layout-header > #layout-header-nav > nav > ul > li.button > a {
                                height: 34px;
                                padding: 0 22px;
                                -webkit-border-radius: 5px;
                                -moz-border-radius: 5px;
                                border-radius: 5px;
                                line-height: 34px;
                                color: rgba(255, 255, 255, 1);
                                background-color: rgba(var(--color-primary-red), var(--color-primary-green), var(--color-primary-blue), 1);
                            }
        }
        @media(max-width: 1024px){

            #layout > header#layout-header > #layout-header-nav #fav{
                display: none!important;
            }
            #layout > header#layout-header > #layout-header-nav #user{
                display: none!important;
            }
            #layout > header#layout-header > #layout-header-nav #user_mobile{
                margin-top: 20px;
            }
            #layout > header#layout-header > #layout-header-nav #user_mobile #user_logo_mobile{
                color: rgba(67, 67, 67, 1);
                float: left;
                position: absolute;
                font-size: 40px;
                text-align: center;
                width: 100%;
                top: -40px;
            }

            #layout > header#layout-header > #layout-header-nav #user_mobile a{
                margin-top: 10px;
            }

            #layout > header#layout-header > #layout-header-nav #user_options-all{

            }

            #layout > header#layout-header > #layout-header-nav #user_options-background{

            }

            #layout > header#layout-header > #layout-header-nav #user_options{

            }

            #layout > header#layout-header > #layout-header-nav #user_options ul{
                float: left;
                position: relative;
                width: 100%;
                list-style-type: none;
                padding: 0;
            }

            #layout > header#layout-header > #layout-header-nav #user_options li{
                float: left;
                position: relative;
                width: 100%;
            }

            #layout > header#layout-header > #layout-header-nav #user_options a{
                line-height: 34px;
                letter-spacing: 2px;
                font-size: 13px;
                font-weight: 600;
                text-decoration: none;
                text-transform: uppercase;
            }

        }
        @media (min-width: 1025px) {
            #layout > header#layout-header > #layout-header-nav {
                position: relative;
                float: left;
            }
            #layout > header#layout-header > #layout-header-nav #fav #fav_logo:hover{
                color: #d7d7d7!important;
            }
            #layout > header#layout-header > #layout-header-nav #user #user_logo{
                color: white;
                float: left;
                position: relative;
                font-size: 33px;
                margin-right: 10px;
                cursor: pointer;
            }
            #layout > header#layout-header > #layout-header-nav #fav #fav_logo{
                color: white;
                float: left;
                position: relative;
                font-size: 25px;
                padding-top: 2px;
                cursor: pointer;
            }
            #layout > header#layout-header > #layout-header-nav #user_mobile{
                display: none!important;
            }

            #layout > header#layout-header > #layout-header-nav #user_options-all{
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1000;
            }

            #layout > header#layout-header > #layout-header-nav #user_options-background{
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

            #layout > header#layout-header > #layout-header-nav #user_options{
                position: absolute;
                width: 200px;
                height: auto;
                background-color: white;
                right: 20px;
                top: 55px;
                display: none;
                z-index: 10
            }

            #layout > header#layout-header > #layout-header-nav #user_options ul{
                float: left;
                position: relative;
                width: 100%;
                list-style-type: none;
                margin: 0;
                padding: 0;
            }

            #layout > header#layout-header > #layout-header-nav #user_options li{
                float: left;
                position: relative;
                width: 100%;
                cursor: pointer;
            }

            #layout > header#layout-header > #layout-header-nav #user_options li:hover{
                background-color: #d7d7d7;
            }

            #layout > header#layout-header > #layout-header-nav #user_options a{
                position: relative;
                float: left;
                width: 100%;
                height: 64px;
                line-height: 64px;
                padding-left: 25px;
                letter-spacing: 2px;
                font-size: 13px;
                font-weight: 600;
                text-decoration: none;
                text-transform: uppercase;
            }

            #layout > header#layout-header > #layout-header-nav #fav-all{
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 1000;
            }

            #layout > header#layout-header > #layout-header-nav #fav-background{
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: rgba(0, 0, 0, 0.5);
            }

            #layout > header#layout-header > #layout-header-nav #fav_options{
                position: absolute;
                width: 400px;
                height: auto;
                background-color: white;
                right: 20px;
                top: 55px;
                display: none;
                z-index: 10
            }
            #layout > header#layout-header > #layout-header-nav #fav-append{
                position: relative;
                float: left;
                width: 100%;
            }

            #layout > header#layout-header > #layout-header-nav #fav-append a{
                position: relative;
                float: left;
                width: 100%;
            }
            #layout > header#layout-header > #layout-header-nav #fav-append .favorite:hover{
                background-color: #d7d7d7;
            }

            #layout > header#layout-header > #layout-header-nav #fav-append .favorite:hover .favorite-delete{
                display: block;
            }

            #layout > header#layout-header > #layout-header-nav .favorite {
                width: 100%;
                height: 100px;
                border-bottom: 1px solid #bdbdbd57;
                position: relative;
                float: left;
            }

            #layout > header#layout-header > #layout-header-nav .favorite i{
                cursor: pointer;
                display: none;
                position: absolute;
                right: -36px;
                top: 60px;
                width: 70px;
                border: none;
                font-size: 25px;
                background: none;
            }

            #layout > header#layout-header > #layout-header-nav .favorite a .favorite-content {
                position: relative;
                float: left;
                width: 70%;
                height: 100%;
            }

            #layout > header#layout-header > #layout-header-nav .favorite a .favorite-content .favorite-title{
                position: relative;
                float: left;
                letter-spacing: 2px;
                font-size: 13px;
                font-weight: 600;
                text-decoration: none;
                text-transform: uppercase;
                margin-bottom: 0;
            }
            #layout > header#layout-header > #layout-header-nav .favorite a .favorite-content .favorite-category{
                position: relative;
                float: left;
                width: 100%;
                font-size: 12px;
                margin-bottom: 0;
            }
            #layout > header#layout-header > #layout-header-nav .favorite a .favorite-content .favorite-address{
                position: relative;
                float: left;
                width: 80%;
                font-size: 13px;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }


            #layout > header#layout-header > #layout-header-nav .favorite a .favorite-image {
                position: relative;
                float: left;
                width: 25%;
                height: 70px;
                margin-top: 15px;
                margin-left: 2.5%;
                margin-right: 2.5%;
            }

            #publication.corporate header#layout-header > #layout-header-nav {
                display: none;
            }

                #layout > header#layout-header > #layout-header-nav > #layout-header-nav-close {
                    display: none;
                }

                #layout > header#layout-header > #layout-header-nav > nav {
                    position: relative;
                    float: left;
                }

                    #layout > header#layout-header > #layout-header-nav > nav > ul {
                        position: relative;
                        float: left;
                        padding: 0;
                        margin: 0;
                        list-style: none;
                    }

                    #layout > header#layout-header > #layout-header-nav > nav > ul + ul {
                        margin-left: 100px;
                    }

                        #layout > header#layout-header > #layout-header-nav > nav > ul > li {
                            position: relative;
                            float: left;
                        }

                        #layout > header#layout-header > #layout-header-nav > nav > ul > li.button {}

                        #layout > header#layout-header > #layout-header-nav > nav > ul > li + li {
                            margin-left: 50px;
                        }

                            #layout > header#layout-header > #layout-header-nav > nav > ul > li > a {
                                position: relative;
                                float: left;
                                line-height: 34px;
                                letter-spacing: 2px;
                                font-size: 13px;
                                font-weight: 600;
                                text-decoration: none;
                                text-transform: uppercase;
                                -webkit-transition-property: color;
                                -moz-transition-property: color;
                                -ms-transition-property: color;
                                -o-transition-property: color;
                                transition-property: color;
                                -webkit-transition-duration: 0.32s;
                                -moz-transition-duration: 0.32s;
                                -ms-transition-duration: 0.32s;
                                -o-transition-duration: 0.32s;
                                transition-duration: 0.32s;
                                -webkit-transition-timing-function: initial;
                                -moz-transition-timing-function: initial;
                                -ms-transition-timing-function: initial;
                                -o-transition-timing-function: initial;
                                transition-timing-function: initial;
                                -webkit-transition-delay: 0s;
                                -moz-transition-delay: 0s;
                                -ms-transition-delay: 0s;
                                -o-transition-delay: 0s;
                                transition-delay: 0s;

                            }

                            @media (min-width: 1025px) {
                                body#home #layout > header#layout-header:not(.layout-header-floating) > #layout-header-nav > nav > ul > li > a,
                                body#publication #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#signup #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#signup-provider #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#blog #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#post #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#blog-tag #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#author #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#magazine #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#reset-password #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#search #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#favorite #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#reclaim #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#categories #layout > header#layout-header > #layout-header-nav > nav > ul > li > a,
                                body#calendar #layout > header#layout-header > #layout-header-nav > nav > ul > li > a {
                                    color: rgba(255, 255, 255, 1);
                                }

                                body#home #layout > header#layout-header:not(.layout-header-floating) > #layout-header-nav > nav > ul > li > a:hover,
                                body#publication #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover,
                                body#signup #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover,
                                body#signup-provider #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover,
                                body#blog #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover,
                                body#post #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover,
                                body#blog-tag #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover,
                                body#author #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover,
                                body#magazine #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover,
                                body#reclaim #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover,
                                body#categories #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover,
                                body#calendar #layout > header#layout-header > #layout-header-nav > nav > ul > li > a:hover {
                                    color: rgba(166, 166, 166, 1);
                                }

                                body#search #layout > header#layout-header > #layout-header-nav > nav > ul > li > i {
                                    color: rgba(255, 255, 255, 1);
                                    cursor:pointer;
                                }
                            }

                            #layout > header#layout-header > #layout-header-nav > nav > ul > li.button > a {
                                height: 34px;
                                padding: 0 22px;
                                -webkit-border-radius: 5px;
                                -moz-border-radius: 5px;
                                border-radius: 5px;
                                color: rgba(255, 255, 255, 1);
                                background-color: rgba(var(--color-primary-red), var(--color-primary-green), var(--color-primary-blue), 1);
                            }
        }

    /* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- */
    #layout > main#layout-content {
        position: relative;
        float: left;
        overflow: hidden;
    }

    @media (max-width: 1024px) {
        #layout > main#layout-content {
            width: 100.0%;
        }
    }

    @media (min-width: 1025px) {
        body:not(#publication) #layout > main#layout-content,
        #publication:not(.corporate) #layout > main#layout-content {
            width: 100.0%;
        }

        #publication.corporate #layout > main#layout-content {
            width: 60.0%;
            margin-left: 40.0%;
        }
    }

    /* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- */
    #layout > footer#layout-footer {
        position: relative;
        float: left;
    }

    @media (max-width: 1024px) {
        #layout > footer#layout-footer {
            width: 100.0%;
        }
    }

    @media (min-width: 1025px) {
        body:not(#publication) #layout > footer#layout-footer,
        #publication:not(.corporate) #layout > footer#layout-footer {
            width: 100.0%;
        }

        #publication.corporate #layout > footer#layout-footer {
            width: 60.0%;
            margin-left: 40.0%;
        }
    }

        footer#layout-footer section.layout-section#categories {}

            footer#layout-footer section.layout-section#categories .categories-grid,
            footer#layout-footer section.layout-section#categories .categories-grid1,
            footer#layout-footer section.layout-section#categories .categories-grid2,
            footer#layout-footer section.layout-section#categories .categories-grid3{
                position: relative;
                float: left;
                width: 100.0%;
                margin-top: 10px;
                z-index: 111;
            }

            @media (max-width: 768px) {
                footer#layout-footer section.layout-section#categories .categories-grid {
                    -webkit-column-count: 2;
                    -moz-column-count: 2;
                    column-count: 2;
                }
            }

            @media (min-width: 769px) and (max-width: 1024px) {
                footer#layout-footer section.layout-section#categories .categories-grid {
                    -webkit-column-count: 3;
                    -moz-column-count: 3;
                    column-count: 3;
                }
            }

            @media (min-width: 1025px) {
                footer#layout-footer section.layout-section#categories .categories-grid {
                    -webkit-column-count: 5;
                    -moz-column-count: 5;
                    column-count: 5;
                }

                footer#layout-footer section.layout-section#categories .categories-grid1 {
                    -webkit-column-count: 1;
                    -moz-column-count: 1;
                    column-count: 1;
                }
                footer#layout-footer section.layout-section#categories .categories-grid2 {
                    -webkit-column-count: 2;
                    -moz-column-count: 2;
                    column-count: 2;
                }
                footer#layout-footer section.layout-section#categories .categories-grid3 {
                    -webkit-column-count: 3;
                    -moz-column-count: 3;
                    column-count: 3;
                }

                #publication:not(.corporate) footer#layout-footer section.layout-section#categories .categories-grid {
                    -webkit-column-count: 5;
                    -moz-column-count: 5;
                    column-count: 5;
                }

                #publication.corporate footer#layout-footer section.layout-section#categories .categories-grid {
                    -webkit-column-count: 3;
                    -moz-column-count: 3;
                    column-count: 3;
                }
            }

                footer#layout-footer section.layout-section#categories h3.section-title {
                    position: relative;
                    float: left;
                    width: 100.0%;
                    margin: 0;
                    font-size: 22px;
                    font-weight: 700;
                    text-align: center;
                    text-transform: uppercase;
                    margin-bottom: 20px;
                }

                footer#layout-footer section.layout-section#categories h4.section-subtitle {
                    position: relative;
                    float: left;
                    width: 100.0%;
                    margin: 0;
                    font-size: 18px;
                    font-weight: 400;
                    text-align: center;
                }

                footer#layout-footer section.layout-section#categories h3.section-title + h4.section-subtitle {
                    margin-top: 20px;
                }

                footer#layout-footer section.layout-section#categories .categories-grid a,
                footer#layout-footer section.layout-section#categories .categories-grid1 a,
                footer#layout-footer section.layout-section#categories .categories-grid2 a,
                footer#layout-footer section.layout-section#categories .categories-grid3 a {
                    position: relative;
                    float: left;
                    width: 100.0%;
                    line-height: 24px;
                    font-size: 12px;
                    font-weight: 400;
                    text-decoration: none;
                    cursor: pointer;
                    text-align: center;
                    text-transform: uppercase;
                }

                footer#layout-footer section.layout-section#categories .categories-grid a:hover,
                footer#layout-footer section.layout-section#categories .categories-grid1 a:hover,
                footer#layout-footer section.layout-section#categories .categories-grid2 a:hover,
                footer#layout-footer section.layout-section#categories .categories-grid3 a:hover {
                    text-decoration: underline;
                }

        footer#layout-footer section.layout-section#footer {
            padding: 100px 0 120px;
            background-color: rgba(38, 38, 38, 1);
        }

            footer#layout-footer section.layout-section#footer > .section-center {}

            @media (max-width: 1160px) {
                footer#layout-footer section.layout-section#footer > .section-center {
                    padding: 10px 20px 30px;
                }
            }

                footer#layout-footer section.layout-section#footer > .section-center h3 {
                    position: relative;
                    float: left;
                    width: 100.0%;
                    margin: 0 0 38px;
                    font-size: 18px;
                    font-weight: 600;
                    text-transform: uppercase;
                    color: rgba(255, 255, 255, 1);
                }

                footer#layout-footer section.layout-section#footer > .section-center #footer-logo {
                    position: relative;
                    float: left;
                    max-width: 100.0%;
                    max-height: 44px;
                    margin-bottom: 18px;
                    top: calc(50% - 14px);
                }

                    footer#layout-footer section.layout-section#footer > .section-center #footer-logo > img {
                        position: relative;
                        float: left;
                        max-width: 100.0%;
                        max-height: 44px;
                    }

                footer#layout-footer section.layout-section#footer > .section-center > #footer-left {}

                    footer#layout-footer section.layout-section#footer > .section-center > #footer-left > ul {
                        position: relative;
                        float: left;
                        width: 100.0%;
                        padding: 0;
                        margin: 0;
                        list-style: none;
                    }

                        footer#layout-footer section.layout-section#footer > .section-center > #footer-left > ul > li {
                            position: relative;
                            float: left;
                            width: 100.0%;
                        }

                        footer#layout-footer section.layout-section#footer > .section-center > #footer-left > ul > li:not(:last-child) {
                            margin-bottom: 18px;
                        }

                            footer#layout-footer section.layout-section#footer > .section-center > #footer-left > ul > li > a {
                                position: relative;
                                float: left;
                                width: 100.0%;
                                text-decoration: none;
                            }

                                footer#layout-footer section.layout-section#footer > .section-center > #footer-left > ul > li > a > i {
                                    position: relative;
                                    float: left;
                                    margin-right: 10px;
                                    line-height: 15px;
                                    font-size: 15px;
                                    color: rgba(255, 255, 255, 1);
                                }

                                footer#layout-footer section.layout-section#footer > .section-center > #footer-left > ul > li > a > span {
                                    position: relative;
                                    float: left;
                                    line-height: 15px;
                                    letter-spacing: 1px;
                                    font-size: 13px;
                                    font-weight: 400;
                                    color: rgba(255, 255, 255, 1);
                                }

                footer#layout-footer section.layout-section#footer > .section-center > #footer-right {}

                @media (max-width: 640px) {
                    footer#layout-footer section.layout-section#footer > .section-center > #footer-right {
                        margin-top: 38px;
                    }
                    footer#layout-footer section.layout-section#footer > .section-center {
                        padding: 10px 20px 20px;
                    }
                    footer#layout-footer section.layout-section#footer > .section-center > #footer-right {
                        border: 0px !important;
                    }
                    footer#layout-footer section.layout-section#footer > .section-center > #footer-right > #eventsip-text {
                        display: none;
                    }

                }

                    footer#layout-footer section.layout-section#footer > .section-center > #footer-right > p {
                        position: relative;
                        float: left;
                        width: 100.0%;
                        margin: 0;
                        line-height: 24px;
                        font-size: 13px;
                        font-weight: 400;
                        letter-spacing: 1px;
                        color: rgba(255, 255, 255, 1);
                    }

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- */
#layout > main#layout-content section.layout-section {
    position: relative;
    float: left;
    width: 100.0%;
    padding: 80px 0 80px 0;
}

#layout > footer#layout-footer section.layout-section {
    position: relative;
    float: left;
    width: 100.0%;
    padding: 60px 0 60px;
    z-index: 1;
}

#layout > main#layout-content section.layout-section:first-child,
#layout > footer#layout-footer section.layout-section:first-child {
    padding-top: 80px;
}

#layout > main#layout-content section.layout-section.full-height,
#layout > footer#layout-footer section.layout-section.full-height {
    min-height: 100vh;
}

    #layout > main#layout-content section.layout-section > .section-image,
    #layout > footer#layout-footer section.layout-section > .section-image {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #layout > main#layout-content section.layout-section > .section-image.fixed,
    #layout > footer#layout-footer section.layout-section > .section-image.fixed {
        background-attachment: fixed;
    }

    #layout > main#layout-content section.layout-section > .section-image.section-opacity:after,
    #layout > footer#layout-footer section.layout-section > .section-image.section-opacity:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.4);
    }

    #layout > main#layout-content section.layout-section > .section-full,
    #layout > footer#layout-footer section.layout-section > .section-full {
        position: relative;
        float: left;
        width: 100.0%;
    }

    #layout > main#layout-content section.layout-section > .section-padding,
    #layout > footer#layout-footer section.layout-section > .section-padding {
        position: relative;
        float: left;
        width: 100.0%;
        padding-left: 20px;
        padding-right: 20px;
    }

    #layout > main#layout-content section.layout-section .section-center,
    #layout > footer#layout-footer section.layout-section .section-center {
        position: relative;
        float: left;
    }

    @media (max-width: 1024px) {
        #layout > main#layout-content section.layout-section .section-center,
        #layout > footer#layout-footer section.layout-section .section-center {
            width: 100.0%;
            padding-left: 20px;
            padding-right: 20px;
        }
    }

    @media (min-width: 1025px) and (max-width: 1160px) {
        #layout > main#layout-content section.layout-section .section-center,
        #layout > footer#layout-footer section.layout-section .section-center {
            width: 100.0%;
            padding-left: 20px;
            padding-right: 20px;
        }
    }

    @media (min-width: 1161px) {
        body:not(#publication) #layout > main#layout-content section.layout-section .section-center,
        body:not(#publication) #layout > footer#layout-footer section.layout-section .section-center,
        #publication:not(.corporate) #layout > main#layout-content section.layout-section .section-center,
        #publication:not(.corporate) #layout > footer#layout-footer section.layout-section .section-center {
            width: 1120px;
            left: 50.0%;
            margin-left: -560px;
            clear: both;
        }

        #publication.corporate #layout > main#layout-content section.layout-section .section-center,
        #publication.corporate #layout > footer#layout-footer section.layout-section .section-center {
            width: 100.0%;
            padding-left: 20px;
            padding-right: 20px;
        }
    }

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- */


#layout > footer-eventsip#layout-footer section.layout-section {
    position: relative;
    float: left;
    width: 100.0%;
    padding: 60px 0 60px;
}

#layout > footer-eventsip#layout-footer section.layout-section > .section-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#layout > footer#layout-footer section.layout-section > .section-image.section-opacity:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

#layout > main#layout-content section.layout-section > .section-full,
#layout > footer#layout-footer section.layout-section > .section-full {
    position: relative;
    float: left;
    width: 100.0%;
}

#layout > main#layout-content section.layout-section > .section-padding,
#layout > footer#layout-footer section.layout-section > .section-padding {
    position: relative;
    float: left;
    width: 100.0%;
    padding-left: 20px;
    padding-right: 20px;
}

#layout > main#layout-content section.layout-section .section-center,
#layout > footer#layout-footer section.layout-section .section-center {
    position: relative;
    float: left;
}

@media (max-width: 1024px) {
    #layout > main#layout-content section.layout-section .section-center,
    #layout > footer#layout-footer section.layout-section .section-center {
        width: 100.0%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1025px) and (max-width: 1160px) {
    #layout > main#layout-content section.layout-section .section-center,
    #layout > footer#layout-footer section.layout-section .section-center {
        width: 100.0%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1161px) {
    body:not(#publication) #layout > main#layout-content section.layout-section .section-center,
    body:not(#publication) #layout > footer#layout-footer section.layout-section .section-center,
    #publication:not(.corporate) #layout > main#layout-content section.layout-section .section-center,
    #publication:not(.corporate) #layout > footer#layout-footer section.layout-section .section-center {
        width: 1120px;
        left: 50.0%;
        margin-left: -560px;
        clear: both;
    }

    #publication.corporate #layout > main#layout-content section.layout-section .section-center,
    #publication.corporate #layout > footer#layout-footer section.layout-section .section-center {
        width: 100.0%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- */

.attribute {
    position: relative;
    float: left;
    height: 16px;
    padding-left: 20px;
}

.attribute:not(.attribute-full):not(.attribute-center) + .attribute:not(.attribute-full):not(.attribute-center) {
    padding-left: 32px !important;
}

.attribute.attribute-full {
    width: 100.0%;
}

.attribute.attribute-center {
    max-width: 100.0%;
    left: 50.0%;
    -webkit-transform: translateX(-50.0%);
    -moz-transform: translateX(-50.0%);
    -ms-transform: translateX(-50.0%);
    -o-transform: translateX(-50.0%);
    transform: translateX(-50.0%);
    clear: both;
}

    .attribute > i {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 16px;
    }

    .attribute:not(.attribute-full):not(.attribute-center) + .attribute:not(.attribute-full):not(.attribute-center) > i {
        left: 12px;
    }

    .attribute > span {
        position: relative;
        float: left;
        width: 100%;
        height: 16px;
        line-height: 16px;
        font-size: 13px;
        font-weight: 400;
        -ms-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- */
.rating {
    position: relative;
    float: left;
    height: 16px;
    overflow: hidden;
}

.rating.rating-center {
    max-width: 100.0%;
    left: 50.0%;
    -webkit-transform: translateX(-50.0%);
    -moz-transform: translateX(-50.0%);
    -ms-transform: translateX(-50.0%);
    -o-transform: translateX(-50.0%);
    transform: translateX(-50.0%);
    clear: both;
}

    .rating > i {
        position: relative;
        float: left;
        width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 17px;
        color: rgba(255, 193, 7, 1);
    }

.shadow {
    -webkit-text-shadow: var(--text-shadow-elevation-2);
    -moz-text-shadow: var(--text-shadow-elevation-2);
    text-shadow: var(--text-shadow-elevation-2);
}


/* ----- FOOTER -------- */

footer#layout-footer section.layout-section#footer > .section-center > #footer-left > ul > li > a > i.share-grid-column-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50.0%;
    -moz-border-radius: 50.0%;
    border-radius: 50.0%;
    line-height: 30px;
    font-size: 15px;
    text-align: center;
    color: #262626;
    background-color: #ffffff;
}
footer#layout-footer section.layout-section#footer > .section-center > #footer-left > ul > li > a > i.share-grid-column-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50.0%;
    -moz-border-radius: 50.0%;
    border-radius: 50.0%;
    line-height: 30px;
    font-size: 15px;
    text-align: center;
    color: #262626;
    background-color: #ffffff;
}

footer#layout-footer section.layout-section#footer > .section-center > #footer-left > a > i.share-grid-column-logo-eip {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50.0%;
    -moz-border-radius: 50.0%;
    border-radius: 50.0%;
    line-height: 20px;
    font-size: 10px;
    text-align: center;
    color: #262626;
    background-color: #ffffff;
}

.footer-redes {
    position: relative;
    float: right;
    width: 25px;
    height: 25px;
    top: 10px;
}

@media (max-width: 930px) {
    #footer-center {
        display: none;
    }
    #footer-bottom{
        display: block !important;
    }
}
@media (max-width: 680px) {
    .footer-redes {
        display: none;
    }
    #footer-left{
        margin: 0px;
    }
}

.menu-gradient{
    position:  absolute;
    width:  100%;
    height:  70px;
    z-index: 20;
    background: linear-gradient(#8a8a8a 0%, #ffffff00 95%, #ffffff00);
    background: -prefix-linear-gradient(#8a8a8a 0%, #ffffff00 95%, #ffffff00);
    background: -moz-linear-gradient(#8a8a8a 0%, #ffffff00 95%, #ffffff00);
    background: -webkit-gradient(#8a8a8a 0%, #ffffff00 95%, #ffffff00);
    background: -webkit-linear-gradient(#8a8a8a 0%, #ffffff00 95%, #ffffff00);
    background: -o-linear-gradient(#8a8a8a 0%, #ffffff00 95%, #ffffff00);
    background: -ms-linear-gradient(#8a8a8a 0%, #ffffff00 95%, #ffffff00);
}

.profile-image{
    height: 40px;
    width: 40px;
    float: left;
    position: relative;
    background: no-repeat;
    background-size: 100%;
    border: 1px solid white;
    background-position: center;
    border-radius: 50%;
    margin-right: 20px;
    top: -3px;
}

.cs-loader {
    top: 0;
    left: 0;
    height: 38px;
    width: 223px;
    margin-left: 50px;
    float: left;
    position: relative;
}

.cs-loader-inner {
    transform: translateY(-50%);
    top: 37%;
    position: absolute;
    width: calc(100% - 30px);
    color: #FFF;

    text-align: center;
}

.cs-loader-inner label {
    font-size: 20px;
    opacity: 0;
    display:inline-block;
    color:white;
}

@keyframes lol {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }
    33% {
        opacity: 1;
        transform: translateX(0px);
    }
    66% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(150px);
    }
}

@-webkit-keyframes lol {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-300px);
    }
    33% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }
    66% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(300px);
    }
}

.cs-loader-inner label:nth-child(6) {
    -webkit-animation: lol 3s infinite ease-in-out;
    animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
    -webkit-animation: lol 3s 100ms infinite ease-in-out;
    animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
    -webkit-animation: lol 3s 200ms infinite ease-in-out;
    animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
    -webkit-animation: lol 3s 300ms infinite ease-in-out;
    animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
    -webkit-animation: lol 3s 400ms infinite ease-in-out;
    animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
    -webkit-animation: lol 3s 500ms infinite ease-in-out;
    animation: lol 3s 500ms infinite ease-in-out;
}